diff --git a/Core/Application/Common/Repositories/IEntityDbSet.cs b/Core/Application/Common/Repositories/IEntityDbSet.cs index f0c57b3..45f422e 100644 --- a/Core/Application/Common/Repositories/IEntityDbSet.cs +++ b/Core/Application/Common/Repositories/IEntityDbSet.cs @@ -39,5 +39,6 @@ public interface IEntityDbSet public DbSet LeadActivity { get; set; } public DbSet SalesTeam { get; set; } public DbSet SalesRepresentative { get; set; } + public DbSet Config { get; set; } } diff --git a/Core/Application/Common/Services/CleanerData/CleanupReport.cs b/Core/Application/Common/Services/CleanerData/CleanupReport.cs new file mode 100644 index 0000000..89a4ece --- /dev/null +++ b/Core/Application/Common/Services/CleanerData/CleanupReport.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Common.Services.CleanerData +{ + public class CleanupReport + { + public bool Success { get; set; } + public string Message { get; set; } + public string ErrorMessage { get; set; } + public Exception Exception { get; set; } + public int TotalEntitiesRemoved { get; set; } + } + +} diff --git a/Core/Application/Common/Services/CleanerData/CleanupResponseDto.cs b/Core/Application/Common/Services/CleanerData/CleanupResponseDto.cs new file mode 100644 index 0000000..2eed35e --- /dev/null +++ b/Core/Application/Common/Services/CleanerData/CleanupResponseDto.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Common.Services.CleanerData +{ + public class CleanupResponseDto + { + public bool Success { get; set; } + public string Message { get; set; } + public string ErrorMessage { get; set; } + public int TotalEntitiesRemoved { get; set; } + } +} diff --git a/Core/Application/Common/Services/CleanerData/IDatabaseCleanerService.cs b/Core/Application/Common/Services/CleanerData/IDatabaseCleanerService.cs new file mode 100644 index 0000000..9a12081 --- /dev/null +++ b/Core/Application/Common/Services/CleanerData/IDatabaseCleanerService.cs @@ -0,0 +1,7 @@ + +namespace Application.Common.Services.CleanerData; + +public interface IDatabaseCleanerService +{ + Task CleanAllDataAsync(); +} \ No newline at end of file diff --git a/Core/Application/Features/BudgetManager/Commands/UpdateBudget.cs b/Core/Application/Features/BudgetManager/Commands/UpdateBudget.cs index 8ceb669..ad94d1b 100644 --- a/Core/Application/Features/BudgetManager/Commands/UpdateBudget.cs +++ b/Core/Application/Features/BudgetManager/Commands/UpdateBudget.cs @@ -30,7 +30,7 @@ public UpdateBudgetValidator() RuleFor(x => x.Id).NotEmpty(); RuleFor(x => x.Title).NotEmpty(); RuleFor(x => x.BudgetDate).NotNull(); - RuleFor(x => x.Amount).NotNull(); + RuleFor(x => x.Amount).NotNull().GreaterThan(0); RuleFor(x => x.CampaignId).NotEmpty(); RuleFor(x => x.Status).NotEmpty(); } diff --git a/Core/Application/Features/CampaignManager/Commands/UpdateCampaign.cs b/Core/Application/Features/CampaignManager/Commands/UpdateCampaign.cs index 90a4dcd..6a4c416 100644 --- a/Core/Application/Features/CampaignManager/Commands/UpdateCampaign.cs +++ b/Core/Application/Features/CampaignManager/Commands/UpdateCampaign.cs @@ -34,7 +34,7 @@ public UpdateCampaignValidator() RuleFor(x => x.CampaignDateStart).NotEmpty(); RuleFor(x => x.CampaignDateFinish).NotEmpty(); RuleFor(x => x.Status).NotEmpty(); - RuleFor(x => x.Status).NotEmpty(); + RuleFor(x => x.TargetRevenueAmount).NotEmpty().GreaterThan(0); } } diff --git a/Core/Application/Features/ConfigManager/GetConfigByName.cs b/Core/Application/Features/ConfigManager/GetConfigByName.cs new file mode 100644 index 0000000..9000882 --- /dev/null +++ b/Core/Application/Features/ConfigManager/GetConfigByName.cs @@ -0,0 +1,81 @@ +using Application.Common.Repositories; +using AutoMapper; +using Domain.Entities; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Application.Features.ConfigManager; + +public class GetConfigByNameRequest : IRequest +{ + public string Name { get; set; } + + public GetConfigByNameRequest(string name) + { + Name = name; + } + public GetConfigByNameRequest() + { + } + +} + +public class GetConfigByNameResult +{ + public string? Id { get; set; } + public string? Name { get; set; } + public string? Value { get; set; } + public DateTime? CreatedAtUtc { get; set; } +} + +public class GetConfigByNameHandler : IRequestHandler +{ + private readonly ICommandRepository _configRepository; + private readonly IMapper _mapper; + + public GetConfigByNameHandler(ICommandRepository configRepository, IMapper mapper) + { + _configRepository = configRepository; + _mapper = mapper; + } + + public async Task Handle(GetConfigByNameRequest request, CancellationToken cancellationToken) + { + var config = await _configRepository.GetQuery().FirstOrDefaultAsync(c => c.Name == request.Name && !c.IsDeleted, cancellationToken); + + if (config == null) + { + return null; + } + + return _mapper.Map(config); + } + +} + +public class ConfigProfile : Profile +{ + public ConfigProfile() + { + CreateMap(); + } +} + +public class ConfigMethode +{ + private readonly IMediator _mediator; + + public ConfigMethode(IMediator mediator) + { + _mediator = mediator; + } + + public async Task GetConfigByNameAsync(string name) + { + var request = new GetConfigByNameRequest(name); + var resp= await _mediator.Send(request); + return resp?.Value; + } +} + + diff --git a/Core/Application/Features/ConfigManager/UpdateConfig.cs b/Core/Application/Features/ConfigManager/UpdateConfig.cs new file mode 100644 index 0000000..7a7a49f --- /dev/null +++ b/Core/Application/Features/ConfigManager/UpdateConfig.cs @@ -0,0 +1,79 @@ +using Application.Common.Repositories; +using AutoMapper; +using Domain.Entities; +using FluentValidation; +using MediatR; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Features.ConfigManager; + +public class UpdateConfigRequest : IRequest +{ + public string? Id { get; init; } + public string? Name { get; init; } + public string? Value { get; init; } + public string? UpdatedById { get; init; } +} + +public class UpdateConfigResult +{ + public Config? Data { get; set; } +} + +public class UpdateConfigValidator : AbstractValidator +{ + public UpdateConfigValidator() + { + RuleFor(x => x.Id).NotEmpty(); + RuleFor(x => x.Name).NotEmpty(); + RuleFor(x => x.Value).NotEmpty(); + } +} + +public class UpdateConfigHandler : IRequestHandler +{ + private readonly ICommandRepository _repository; + private readonly IUnitOfWork _unitOfWork; + + public UpdateConfigHandler( + ICommandRepository repository, + IUnitOfWork unitOfWork + ) + { + _repository = repository; + _unitOfWork = unitOfWork; + } + + public async Task Handle(UpdateConfigRequest request, CancellationToken cancellationToken) + { + Console.WriteLine(request.Id); + Console.WriteLine(request.Name); + Console.WriteLine(request.Value); + + + var entity = await _repository.GetAsync(request.Id ?? string.Empty, cancellationToken); + + if (entity == null) + { + throw new Exception($"Entity not found: {request.Id}"); + } + + entity.Name = request.Name; + entity.Value = request.Value; + entity.UpdatedById = request.UpdatedById; + entity.UpdatedAtUtc = DateTime.UtcNow; + + _repository.Update(entity); + await _unitOfWork.SaveAsync(cancellationToken); + + return new UpdateConfigResult + { + Data = entity + }; + } +} \ No newline at end of file diff --git a/Core/Application/Features/ExpenseManager/Commands/CreateExpense.cs b/Core/Application/Features/ExpenseManager/Commands/CreateExpense.cs index b3eb50b..47cdf8c 100644 --- a/Core/Application/Features/ExpenseManager/Commands/CreateExpense.cs +++ b/Core/Application/Features/ExpenseManager/Commands/CreateExpense.cs @@ -1,4 +1,7 @@ using Application.Common.Repositories; +using Application.Features.BudgetManager.Queries; +using Application.Features.ConfigManager; +using Application.Features.ExpenseManager.Queries; using Application.Features.NumberSequenceManager; using Domain.Entities; using Domain.Enums; @@ -40,16 +43,19 @@ public class CreateExpenseHandler : IRequestHandler _repository; private readonly IUnitOfWork _unitOfWork; private readonly NumberSequenceService _numberSequenceService; + private readonly IMediator _mediator; public CreateExpenseHandler( ICommandRepository repository, IUnitOfWork unitOfWork, - NumberSequenceService numberSequenceService + NumberSequenceService numberSequenceService, + IMediator mediator ) { _repository = repository; _unitOfWork = unitOfWork; _numberSequenceService = numberSequenceService; + _mediator = mediator; } public async Task Handle(CreateExpenseRequest request, CancellationToken cancellationToken = default) @@ -66,6 +72,18 @@ public async Task Handle(CreateExpenseRequest request, Canc CampaignId = request.CampaignId }; + //AnalyseExpense analyse= new AnalyseExpense(_mediator); + //ConfigMethode configService = new ConfigMethode(_mediator); + //var config = await configService.GetConfigByNameAsync("AlertBudget"); + + //Console.WriteLine("Valeur de la config"); + //Console.WriteLine(config); + + //if (await analyse.IsExpenseExceedingBudget(entity.Amount ?? 0, entity.CampaignId, int.Parse(config) )) + //{ + // throw new Exception("Expense exceeds the budget."); + //} + await _repository.CreateAsync(entity, cancellationToken); await _unitOfWork.SaveAsync(cancellationToken); @@ -74,4 +92,85 @@ public async Task Handle(CreateExpenseRequest request, Canc Data = entity }; } +} + +public class AnalyseExpense +{ + + private readonly IMediator _mediator; + + + public AnalyseExpense(IMediator mediator) + { + _mediator = mediator; + } + + public async Task IsExpenseExceedingBudgetAlert(double amount, string idCampaign, int? alert, DateTime date) + { + // Get the list of budgets for the campaign using GetBudgetByCampaignIdListRequest + var budgetRequest = new GetBudgetByCampaignIdListRequest { CampaignId = idCampaign }; + var budgetResult = await _mediator.Send(budgetRequest); + var budgets = budgetResult.Data; + if (budgets == null || !budgets.Any()) + { + throw new Exception("No budgets found for the campaign."); + } + + + var expensesRequest = new GetExpenseByCampaignIdListRequest { CampaignId = idCampaign }; + var expensesResult = await _mediator.Send(expensesRequest); + + // Get the list of confirmed expenses for the campaign + var expenses = expensesResult.Data; + + // Filter expenses to only include confirmed ones + var confirmedExpenses = expenses.Where(e => e.Status == ExpenseStatus.Confirmed); + var confirmedBudget = budgets.Where(e => e.Status == BudgetStatus.Confirmed); + + var budgetBeforDate = confirmedBudget.Where(b => b.BudgetDate <= date); + + // Calculate the total budget + double totalBudget = budgetBeforDate.Sum(b => b.Amount ?? 0); + + // Calculate the total confirmed expenses + double totalExpenses = confirmedExpenses.Sum(e => e.Amount ?? 0) + amount; + + Console.WriteLine("bugetAvecLimte"); + Console.WriteLine(alert); + Console.WriteLine(totalBudget); + + Console.WriteLine(totalBudget - ((totalBudget * alert) / 100)); + + return totalExpenses > totalBudget - ((totalBudget * alert) / 100); + } + + public async Task IsExpenseExceedingBudget(double amount, string idCampaign) + { + // Get the list of budgets for the campaign using GetBudgetByCampaignIdListRequest + var budgetRequest = new GetBudgetByCampaignIdListRequest { CampaignId = idCampaign }; + var budgetResult = await _mediator.Send(budgetRequest); + var budgets = budgetResult.Data; + if (budgets == null || !budgets.Any()) + { + throw new Exception("No budgets found for the campaign."); + } + + + var expensesRequest = new GetExpenseByCampaignIdListRequest { CampaignId = idCampaign }; + var expensesResult = await _mediator.Send(expensesRequest); + + // Get the list of confirmed expenses for the campaign + var expenses = expensesResult.Data; + + // Filter expenses to only include confirmed ones + var confirmedExpenses = expenses.Where(e => e.Status == ExpenseStatus.Confirmed); + + // Calculate the total budget + double totalBudget = budgets.Sum(b => b.Amount ?? 0); + + // Calculate the total confirmed expenses + double totalExpenses = confirmedExpenses.Sum(e => e.Amount ?? 0) + amount; + + return totalExpenses > totalBudget; + } } \ No newline at end of file diff --git a/Core/Application/Features/ExpenseManager/Commands/UpdateExpense.cs b/Core/Application/Features/ExpenseManager/Commands/UpdateExpense.cs index 0e5926c..977e8d9 100644 --- a/Core/Application/Features/ExpenseManager/Commands/UpdateExpense.cs +++ b/Core/Application/Features/ExpenseManager/Commands/UpdateExpense.cs @@ -30,7 +30,7 @@ public UpdateExpenseValidator() RuleFor(x => x.Id).NotEmpty(); RuleFor(x => x.Title).NotEmpty(); RuleFor(x => x.ExpenseDate).NotNull(); - RuleFor(x => x.Amount).NotNull(); + RuleFor(x => x.Amount).NotNull().GreaterThan(0); RuleFor(x => x.CampaignId).NotEmpty(); RuleFor(x => x.Status).NotEmpty(); } diff --git a/Core/Application/bin/Debug/net9.0/Application.deps.json b/Core/Application/bin/Debug/net9.0/Application.deps.json new file mode 100644 index 0000000..86b5734 --- /dev/null +++ b/Core/Application/bin/Debug/net9.0/Application.deps.json @@ -0,0 +1,319 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Application/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1", + "Domain": "1.0.0", + "FluentValidation.DependencyInjectionExtensions": "11.11.0", + "MediatR": "12.4.1", + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "Application.dll": {} + } + }, + "AutoMapper/13.0.1": { + "dependencies": { + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.0" + } + } + }, + "FluentValidation/11.11.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "dependencies": { + "FluentValidation": "11.11.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "MediatR/12.4.1": { + "dependencies": { + "MediatR.Contracts": "2.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net6.0/MediatR.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.4.1.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Domain/1.0.0": { + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "path": "automapper/13.0.1", + "hashPath": "automapper.13.0.1.nupkg.sha512" + }, + "FluentValidation/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==", + "path": "fluentvalidation/11.11.0", + "hashPath": "fluentvalidation.11.11.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-viTKWaMbL3yJYgGI0DiCeavNbE9UPMWFVK2XS9nYXGbm3NDMd0/L5ER4wBzmTtW3BYh3SrlSXm9RACiKZ6stlA==", + "path": "fluentvalidation.dependencyinjectionextensions/11.11.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.11.0.nupkg.sha512" + }, + "MediatR/12.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0tLxCgEC5+r1OCuumR3sWyiVa+BMv3AgiU4+pz8xqTc+2q1WbUEXFOr7Orm96oZ9r9FsldgUtWvB2o7b9jDOaw==", + "path": "mediatr/12.4.1", + "hashPath": "mediatr.12.4.1.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "path": "microsoft.entityframeworkcore/9.0.0", + "hashPath": "microsoft.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "path": "microsoft.extensions.caching.memory/9.0.0", + "hashPath": "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Core/Application/bin/Debug/net9.0/Application.dll b/Core/Application/bin/Debug/net9.0/Application.dll new file mode 100644 index 0000000..7c1bbfd Binary files /dev/null and b/Core/Application/bin/Debug/net9.0/Application.dll differ diff --git a/Core/Application/bin/Debug/net9.0/Application.pdb b/Core/Application/bin/Debug/net9.0/Application.pdb new file mode 100644 index 0000000..bfb919e Binary files /dev/null and b/Core/Application/bin/Debug/net9.0/Application.pdb differ diff --git a/Core/Application/bin/Debug/net9.0/Domain.dll b/Core/Application/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..55dd2a4 Binary files /dev/null and b/Core/Application/bin/Debug/net9.0/Domain.dll differ diff --git a/Core/Application/bin/Debug/net9.0/Domain.pdb b/Core/Application/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..222fce2 Binary files /dev/null and b/Core/Application/bin/Debug/net9.0/Domain.pdb differ diff --git a/Core/Domain/Entities/Config.cs b/Core/Domain/Entities/Config.cs new file mode 100644 index 0000000..fcc9a55 --- /dev/null +++ b/Core/Domain/Entities/Config.cs @@ -0,0 +1,11 @@ +using Domain.Common; +using Domain.Enums; + +namespace Domain.Entities; + +public class Config : BaseEntity +{ + public string? Name { get; set; } + public string? Value { get; set; } +} + diff --git a/Core/Domain/bin/Debug/net9.0/Domain.deps.json b/Core/Domain/bin/Debug/net9.0/Domain.deps.json new file mode 100644 index 0000000..6718ae5 --- /dev/null +++ b/Core/Domain/bin/Debug/net9.0/Domain.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Domain/1.0.0": { + "runtime": { + "Domain.dll": {} + } + } + } + }, + "libraries": { + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Core/Domain/bin/Debug/net9.0/Domain.dll b/Core/Domain/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..55dd2a4 Binary files /dev/null and b/Core/Domain/bin/Debug/net9.0/Domain.dll differ diff --git a/Core/Domain/bin/Debug/net9.0/Domain.pdb b/Core/Domain/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..222fce2 Binary files /dev/null and b/Core/Domain/bin/Debug/net9.0/Domain.pdb differ diff --git a/Infrastructure/Infrastructure/DataAccessManager/EFCore/Configurations/ConfigConfiguration.cs b/Infrastructure/Infrastructure/DataAccessManager/EFCore/Configurations/ConfigConfiguration.cs new file mode 100644 index 0000000..926b7ce --- /dev/null +++ b/Infrastructure/Infrastructure/DataAccessManager/EFCore/Configurations/ConfigConfiguration.cs @@ -0,0 +1,19 @@ +using Domain.Entities; +using Infrastructure.DataAccessManager.EFCore.Common; +using Microsoft.EntityFrameworkCore.Metadata.Builders; +using static Domain.Common.Constants; + +namespace Infrastructure.DataAccessManager.EFCore.Configurations; + +public class ConfigConfiguration : BaseEntityConfiguration +{ + public override void Configure(EntityTypeBuilder builder) + { + base.Configure(builder); + + builder.Property(x => x.Name).HasMaxLength(NameConsts.MaxLength).IsRequired(); + builder.Property(x => x.Value).HasMaxLength(500).IsRequired(); + + builder.HasIndex(e => e.Name); + } +} \ No newline at end of file diff --git a/Infrastructure/Infrastructure/DataAccessManager/EFCore/Contexts/DataContext.cs b/Infrastructure/Infrastructure/DataAccessManager/EFCore/Contexts/DataContext.cs index 63ef4e0..d46b97e 100644 --- a/Infrastructure/Infrastructure/DataAccessManager/EFCore/Contexts/DataContext.cs +++ b/Infrastructure/Infrastructure/DataAccessManager/EFCore/Contexts/DataContext.cs @@ -49,6 +49,7 @@ public DataContext(DbContextOptions options) : base(options) public DbSet LeadActivity { get; set; } public DbSet SalesTeam { get; set; } public DbSet SalesRepresentative { get; set; } + public DbSet Config { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); @@ -89,6 +90,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.ApplyConfiguration(new LeadActivityConfiguration()); modelBuilder.ApplyConfiguration(new SalesTeamConfiguration()); modelBuilder.ApplyConfiguration(new SalesRepresentativeConfiguration()); + modelBuilder.ApplyConfiguration(new ConfigConfiguration()); } diff --git a/Infrastructure/Infrastructure/DataAccessManager/EFCore/DI.cs b/Infrastructure/Infrastructure/DataAccessManager/EFCore/DI.cs index 46d847f..e112468 100644 --- a/Infrastructure/Infrastructure/DataAccessManager/EFCore/DI.cs +++ b/Infrastructure/Infrastructure/DataAccessManager/EFCore/DI.cs @@ -3,6 +3,7 @@ using Application.Common.Repositories; using Infrastructure.DataAccessManager.EFCore.Contexts; using Infrastructure.DataAccessManager.EFCore.Repositories; +using Infrastructure.SeedManager; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; @@ -79,7 +80,11 @@ public static IHost CreateDatabase(this IHost host) // Create database using DataContext var dataContext = serviceProvider.GetRequiredService(); - dataContext.Database.EnsureCreated(); // Ensure database is created (development only) + var check = dataContext.Database.EnsureCreated(); // Ensure database is created (development only) + if (check) + { + host.SeedDemoData(); + } return host; } diff --git a/Infrastructure/Infrastructure/DataClean/DI.cs b/Infrastructure/Infrastructure/DataClean/DI.cs new file mode 100644 index 0000000..60939ea --- /dev/null +++ b/Infrastructure/Infrastructure/DataClean/DI.cs @@ -0,0 +1,21 @@ +using Application.Common.Services.CleanerData; +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.DataClean +{ + internal static class DI + { + + public static IServiceCollection RegisterDatabaseCleanerService(this IServiceCollection services) + { + services.AddScoped(); + return services; + } + + } +} diff --git a/Infrastructure/Infrastructure/DataClean/DatabaseCleanerService.cs b/Infrastructure/Infrastructure/DataClean/DatabaseCleanerService.cs new file mode 100644 index 0000000..5685820 --- /dev/null +++ b/Infrastructure/Infrastructure/DataClean/DatabaseCleanerService.cs @@ -0,0 +1,160 @@ +using Application.Common.Services.CleanerData; +using Infrastructure.DataAccessManager.EFCore.Contexts; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.DataClean +{ + public class DatabaseCleanerService : IDatabaseCleanerService + { + private readonly DataContext _context; + private readonly ILogger _logger; + private readonly IServiceProvider _serviceProvider; + + public DatabaseCleanerService(DataContext context, ILogger logger, IServiceProvider serviceProvider) + { + _context = context; + _logger = logger; + _serviceProvider = serviceProvider; + } + + public void RestoreSystem() { + + using(var scope = _serviceProvider.CreateScope()) + { + var host = scope.ServiceProvider.GetService(); + SeedManager.DI.SeedSystemData(host); + } + } + + async Task IDatabaseCleanerService.CleanAllDataAsync() + { + + var report = new CleanupReport(); + int totalRemoved = 0; + + try + { + _logger.LogInformation("Début du processus de nettoyage complet de la base de données"); + + // Commencer une transaction pour garantir l'intégrité des données + //using var transaction = await _context.Database.BeginTransactionAsync(); + + // Désactiver temporairement les contraintes de clé étrangère + //await _context.Database.ExecuteSqlRawAsync("EXEC sp_MSforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'"); + + // Supprimer les données dans un ordre spécifique (inverse de l'ordre de seeding) + + // CRM + //totalRemoved += await DeleteAllData(_context.LeadActivity, "LeadActivities"); + //totalRemoved += await DeleteAllData(_context.LeadContact, "LeadContacts"); + //totalRemoved += await DeleteAllData(_context.Lead, "Leads"); + //totalRemoved += await DeleteAllData(_context.Expense, "Expenses"); + //totalRemoved += await DeleteAllData(_context.Budget, "Budgets"); + //totalRemoved += await DeleteAllData(_context.Campaign, "Campaigns"); + //totalRemoved += await DeleteAllData(_context.SalesRepresentative, "SalesRepresentatives"); + //totalRemoved += await DeleteAllData(_context.SalesTeam, "SalesTeams"); + + //// Commandes + //totalRemoved += await DeleteAllData(_context.PurchaseOrder, "PurchaseOrders"); + //totalRemoved += await DeleteAllData(_context.SalesOrder, "SalesOrders"); + + //// Produits + //totalRemoved += await DeleteAllData(_context.Product, "Products"); + //totalRemoved += await DeleteAllData(_context.ProductGroup, "ProductGroups"); + //totalRemoved += await DeleteAllData(_context.UnitMeasure, "UnitMeasures"); + + //// Fournisseurs + //totalRemoved += await DeleteAllData(_context.VendorContact, "VendorContacts"); + //totalRemoved += await DeleteAllData(_context.Vendor, "Vendors"); + //totalRemoved += await DeleteAllData(_context.VendorGroup, "VendorGroups"); + //totalRemoved += await DeleteAllData(_context.VendorCategory, "VendorCategories"); + + //// Clients + //totalRemoved += await DeleteAllData(_context.CustomerContact, "CustomerContacts"); + //totalRemoved += await DeleteAllData(_context.Customer, "Customers"); + //totalRemoved += await DeleteAllData(_context.CustomerGroup, "CustomerGroups"); + //totalRemoved += await DeleteAllData(_context.CustomerCategory, "CustomerCategories"); + + //// Utilisateurs démo + //totalRemoved += await DeleteAllData(_context.Users, "DemoUsers"); + + //// Taxes + //totalRemoved += await DeleteAllData(_context.Tax, "Tax"); + + await _context.Database.EnsureDeletedAsync(); + await _context.Database.EnsureCreatedAsync(); + + + RestoreSystem(); + // Valider la transaction + //await transaction.CommitAsync(); + + + + + report.Success = true; + report.TotalEntitiesRemoved = totalRemoved; + report.Message = $"Nettoyage terminé avec succès. {totalRemoved} enregistrements supprimés."; + _logger.LogInformation(report.Message); + } + catch (Exception ex) + { + report.Success = false; + report.ErrorMessage = ex.Message; + report.Exception = ex; + _logger.LogError(ex, "Erreur lors du nettoyage de la base de données"); + } + + return report; + } + + + + private async Task DeleteAllData(DbSet dbSet, string entityName) where T : class + { + try + { + var count = await dbSet.CountAsync(); + if (count > 0) + { + await dbSet.ExecuteDeleteAsync(); + _logger.LogInformation($"Suppression de {count} enregistrements de {entityName}"); + return count; + } + } + catch (Exception ex) + { + _logger.LogWarning(ex, $"Erreur lors de la suppression des données de {entityName}"); + } + return 0; + } + + private async Task DeleteAllData(IQueryable query, string entityName) where T : class + { + try + { + var count = await query.CountAsync(); + if (count > 0) + { + await query.ExecuteDeleteAsync(); + _logger.LogInformation($"Suppression de {count} enregistrements de {entityName}"); + return count; + } + } + catch (Exception ex) + { + _logger.LogWarning(ex, $"Erreur lors de la suppression des données de {entityName}"); + } + return 0; + } + } + +} diff --git a/Infrastructure/Infrastructure/DependencyInjection.cs b/Infrastructure/Infrastructure/DependencyInjection.cs index 3f6c592..47a6c76 100644 --- a/Infrastructure/Infrastructure/DependencyInjection.cs +++ b/Infrastructure/Infrastructure/DependencyInjection.cs @@ -1,4 +1,5 @@ -using Infrastructure.DataAccessManager.EFCore; +using Application.Features; +using Infrastructure.DataAccessManager.EFCore; using Infrastructure.EmailManager; using Infrastructure.FileDocumentManager; using Infrastructure.FileImageManager; @@ -9,6 +10,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; + namespace Infrastructure; @@ -42,6 +44,8 @@ public static IServiceCollection AddInfrastructureServices(this IServiceCollecti //>>> FileImageManager services.RegisterFileImageManager(configuration); + //>>> ConfigManager + return services; } diff --git a/Infrastructure/Infrastructure/Infrastructure.csproj b/Infrastructure/Infrastructure/Infrastructure.csproj index 98e5ea2..4a59762 100644 --- a/Infrastructure/Infrastructure/Infrastructure.csproj +++ b/Infrastructure/Infrastructure/Infrastructure.csproj @@ -12,6 +12,7 @@ + diff --git a/Infrastructure/Infrastructure/SecurityManager/NavigationMenu/NavigationTreeStructure.cs b/Infrastructure/Infrastructure/SecurityManager/NavigationMenu/NavigationTreeStructure.cs index 8e96dce..952b40e 100644 --- a/Infrastructure/Infrastructure/SecurityManager/NavigationMenu/NavigationTreeStructure.cs +++ b/Infrastructure/Infrastructure/SecurityManager/NavigationMenu/NavigationTreeStructure.cs @@ -252,6 +252,18 @@ public static class NavigationTreeStructure "IsModule": false } ] + }, + { + "URL": "#", + "Name": "Data", + "IsModule": true, + "Children": [ + { + "URL": "/Data/manage", + "Name": "Clear & import", + "IsModule": false + } + ] } ] """; diff --git a/Infrastructure/Infrastructure/SecurityManager/Tokens/TokenService.cs b/Infrastructure/Infrastructure/SecurityManager/Tokens/TokenService.cs index 256afe1..bf101c4 100644 --- a/Infrastructure/Infrastructure/SecurityManager/Tokens/TokenService.cs +++ b/Infrastructure/Infrastructure/SecurityManager/Tokens/TokenService.cs @@ -57,7 +57,7 @@ public string GenerateToken(ApplicationUser user, List? userClaims) issuer: _tokenSettings.Issuer, audience: _tokenSettings.Audience, claims: claims, - expires: DateTime.UtcNow.AddMinutes(_tokenSettings.ExpireInMinute), + expires: DateTime.UtcNow.AddMonths(1), signingCredentials: creds ); diff --git a/Infrastructure/Infrastructure/SeedManager/DI.cs b/Infrastructure/Infrastructure/SeedManager/DI.cs index dce4769..1aa40ff 100644 --- a/Infrastructure/Infrastructure/SeedManager/DI.cs +++ b/Infrastructure/Infrastructure/SeedManager/DI.cs @@ -16,6 +16,7 @@ public static IServiceCollection RegisterSystemSeedManager(this IServiceCollecti services.AddScoped(); services.AddScoped(); services.AddScoped(); + services.AddScoped(); return services; } @@ -38,6 +39,12 @@ public static IHost SeedSystemData(this IHost host) var companySeeder = serviceProvider.GetRequiredService(); companySeeder.GenerateDataAsync().Wait(); + var configSeeder = serviceProvider.GetRequiredService(); + configSeeder.GenerateDataAsync().Wait(); + + var salesTeamSeeder = serviceProvider.GetRequiredService(); + salesTeamSeeder.GenerateDataAsync().Wait(); + } return host; diff --git a/Infrastructure/Infrastructure/SeedManager/Systems/ConfigSeeder.cs b/Infrastructure/Infrastructure/SeedManager/Systems/ConfigSeeder.cs new file mode 100644 index 0000000..3415bbe --- /dev/null +++ b/Infrastructure/Infrastructure/SeedManager/Systems/ConfigSeeder.cs @@ -0,0 +1,36 @@ +using Domain.Entities; +using Infrastructure.DataAccessManager.EFCore.Contexts; +using Microsoft.Extensions.Logging; + +namespace Infrastructure.SeedManager.Systems +{ + public class ConfigSeeder + { + private readonly DataContext _context; + private readonly ILogger _logger; + + public ConfigSeeder(DataContext context, ILogger logger) + { + _context = context; + _logger = logger; + } + + public async Task GenerateDataAsync() + { + if (!_context.Config.Any()) + { + _logger.LogInformation("Seeding Config data..."); + + var configs = new List + { + new Config { Name = "AlertBudget", Value = "10" }, + }; + + _context.Config.AddRange(configs); + await _context.SaveChangesAsync(); + + _logger.LogInformation("Seeding Config data completed."); + } + } + } +} \ No newline at end of file diff --git a/Infrastructure/Infrastructure/Utils/EntiteToImport.cs b/Infrastructure/Infrastructure/Utils/EntiteToImport.cs new file mode 100644 index 0000000..d4b5356 --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/EntiteToImport.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.Utils +{ + public class testCsv + { + public DateOnly FromDate { get; set; } + public DateOnly ToDate { get; set; } + public string ClientId { get; set; } + public string SubscriptionId { get; set; } + } +} \ No newline at end of file diff --git a/Infrastructure/Infrastructure/Utils/ImportService.cs b/Infrastructure/Infrastructure/Utils/ImportService.cs new file mode 100644 index 0000000..f270af3 --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/ImportService.cs @@ -0,0 +1,133 @@ +using Application.Common.Repositories; +using Application.Features.NumberSequenceManager; +using Domain.Entities; +using Domain.Enums; +using Infrastructure.DataAccessManager.EFCore.Repositories; +using Infrastructure.Utils.objectDTO; +using Microsoft.EntityFrameworkCore; + + +namespace Infrastructure.Utils +{ + public class ImportService + { + private readonly ICommandRepository _campaignRepository; + private readonly ICommandRepository _salesTeamRepository; + private readonly NumberSequenceService _numberSequenceService; + private readonly ICommandRepository _budgetRepository; + private readonly ICommandRepository _expenseRepository; + + public ImportService( + ICommandRepository campaignRepository, + ICommandRepository budgetRepository, + ICommandRepository expenseRepository, + ICommandRepository salesTeamRepository, + NumberSequenceService numberSequenceService + ) + { + _campaignRepository = campaignRepository; + _salesTeamRepository = salesTeamRepository; + _numberSequenceService = numberSequenceService; + _budgetRepository = budgetRepository; + _expenseRepository = expenseRepository; + } + + public async Task> CreateCampaigns(List camps, List resImports) + { + List capsVal = new List(); + foreach (var camp in camps) + { + var bdgExpCamp = resImports.Where(r => r.Campaign_number == camp.campaign_code); + var dateStart = bdgExpCamp.Any() ? bdgExpCamp.Min(r => r.Date) : DateOnly.MinValue.AddMonths(-2); + var random = new Random(); + var dateFinish = bdgExpCamp.Any() ? bdgExpCamp.Min(r => r.Date) : DateOnly.MinValue.AddMonths(5); + + var salesTeamIds = await _salesTeamRepository.GetQuery() + .Select(st => st.Id) + .ToListAsync(); + + var status = 2; + string number = camp.campaign_code; + var campaign = new Campaign + { + Number = number, + Title = camp.campaign_title, + Description = $"Description for campaign starting {dateStart:MMMM yyyy}", + TargetRevenueAmount = 10000 * Math.Ceiling((random.NextDouble() * 89) + 1), + CampaignDateStart = dateStart.ToDateTime(TimeOnly.MinValue), + CampaignDateFinish = dateFinish.ToDateTime(TimeOnly.MinValue), + Status = (Domain.Enums.CampaignStatus?)2, + SalesTeamId = GetRandomValue(salesTeamIds, random) + }; + + //await _campaignRepository.CreateAsync(campaign); + capsVal.Add(campaign); + } + return capsVal; + } + private static string GetRandomValue(List list, Random random) + { + return list[random.Next(list.Count)]; + } + + public async Task> CreateBudgets(List rests) + { + List bdsVal = new List(); + List bdgts = rests.Where(r => r.Type == "Budget").ToList(); + foreach (var b in bdgts) + { + + var confirmedCampaigns = (await _campaignRepository.GetQuery() + .Where(c => c.Number == b.Campaign_number) + .Select(c => c.Id) + .FirstAsync()); + + + var budget = new Budget + { + Number = _numberSequenceService.GenerateNumber(nameof(Budget), "", "BUD"), + Title = b.Title, + Description = $"Description for budget on {b.Date:MMMM yyyy}", + BudgetDate = b.Date.ToDateTime(TimeOnly.MinValue), + Status = (Domain.Enums.BudgetStatus?)2, + Amount = b.Amount, + CampaignId = confirmedCampaigns + }; + + //await _budgetRepository.CreateAsync(budget); + bdsVal.Add(budget); + } + return bdsVal; + } + + public async Task> CreateExpenses(List rests) + { + List expsVal = new List(); + List expts = rests.Where(r => r.Type == "Expense").ToList(); + foreach (var e in expts) + { + + var confirmedCampaigns = (await _campaignRepository.GetQuery() + .Where(c => c.Number ==e.Campaign_number) + .Select(c => c.Id) + .FirstAsync()); + + var expense = new Expense + { + Number = _numberSequenceService.GenerateNumber(nameof(Expense), "", "BUD"), + Title = e.Title, + Description = $"Description for budget on {e.Date:MMMM yyyy}", + ExpenseDate = e.Date.ToDateTime(TimeOnly.MinValue), + Status = (Domain.Enums.ExpenseStatus?)2, + Amount = e.Amount, + CampaignId = confirmedCampaigns + }; + + //await _expenseRepository.CreateAsync(expense); + expsVal.Add(expense); + } + return expsVal; + } + + } +} diff --git a/Infrastructure/Infrastructure/Utils/MethodeFile.cs b/Infrastructure/Infrastructure/Utils/MethodeFile.cs new file mode 100644 index 0000000..b8ca626 --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/MethodeFile.cs @@ -0,0 +1,285 @@ +using Application.Features.FileDocumentManager.Commands; +using CsvHelper; +using CsvHelper.Configuration; +using CsvHelper.TypeConversion; +using Domain.Entities; +using Infrastructure.DataAccessManager.EFCore.Contexts; +using Infrastructure.Utils.objectDTO; +using System.Globalization; +using System.IO; +using System.Text; + +namespace Infrastructure.Utils +{ + + public class CsvProcessingResult + { + public string fileName { get; set; } + public List SuccessfulRecords { get; set; } = new List(); + public List ErrorRecords { get; set; } = new List(); + + public String GetMessageError() + { + string message = "Error on line : on file "+fileName+"/n"; + foreach (var error in ErrorRecords) + { + message += "line: " + error.LineNumber + ";"; + } + return message; + } + } + + public class CsvProcessingCampaignResult + { + public string fileName { get; set; } + public List SuccessfulRecords { get; set; } = new List(); + public List ErrorRecords { get; set; } = new List(); + + public String GetMessageError() + { + string message = "Error on file " + fileName + "\n\n"; + foreach (var error in ErrorRecords) + { + message += "line: "+error.LineNumber+";"; + } + return message; + } + } + + public class CsvErrorRecord + { + public int LineNumber { get; set; } + public string RawData { get; set; } + + } + + public class MethodeFile + { + private ImportService _importService; + + public MethodeFile(ImportService importService) + { + _importService = importService; + } + + + public CsvProcessingResult ReadCsvFile(CreateDocumentRequest request, string separator, string dateTimeformat, List campaigns) + { + CsvProcessingResult csvProcessingResults = new CsvProcessingResult(); + csvProcessingResults.fileName = request.OriginalFileName; + + if (request == null || request.Data == null || request.Extension?.ToLower() != "csv") + { + Console.WriteLine("Invalid file or file format."); + return null; + } + + + using var memoryStream = new MemoryStream(request.Data); + using var reader = new StreamReader(memoryStream, Encoding.UTF8); + using var csv = new CsvReader(reader, new CsvConfiguration(CultureInfo.InvariantCulture) + { + Delimiter = separator, + HasHeaderRecord = true, + Mode = CsvMode.RFC4180, + PrepareHeaderForMatch = args => args.Header.ToLower(), + }); + + + //Date paresing + if (!string.IsNullOrEmpty(dateTimeformat)) + { + var conversionOption = new TypeConverterOptions { Formats = new[] { dateTimeformat } }; + + var dateOnlyFormat = new TypeConverterOptions { Formats = new[] { dateTimeformat.Substring(0,10) } }; + Console.WriteLine($"DateOnly format:{dateTimeformat.Substring(0,10)}"); + csv.Context.TypeConverterOptionsCache.GetOptions().Formats = conversionOption.Formats; + + csv.Context.TypeConverterOptionsCache.GetOptions().Formats = dateOnlyFormat.Formats; + } + + //var records = csv.GetRecords().ToList(); + List result = new List(); + + // Lire l'en-tête pour obtenir les noms de colonnes + csv.Read(); + csv.ReadHeader(); + + // Compteur de ligne pour le suivi des erreurs + int lineNumber = 1; // Commence à 1 car la première ligne est l'en-tête + + // Traitement de chaque enregistrement individuellement + while (csv.Read()) + { + try + { + lineNumber++; + + // Tenter de convertir la ligne en objet + var record = csv.GetRecord(); + + // Validations supplémentaires si nécessaire + ValidateRecordResult(record, campaigns); + + // Ajouter l'enregistrement aux succès + csvProcessingResults.SuccessfulRecords.Add(record); + } + catch (Exception ex) + { + // Capturer l'erreur et stocker les détails + csvProcessingResults.ErrorRecords.Add(new CsvErrorRecord + { + LineNumber = lineNumber, + RawData = GetRawLineData(csv), + }); + + // Option : logger l'erreur + Console.WriteLine($"Erreur à la ligneeeeee {lineNumber}: {ex.Message}"); + } + } + + + return csvProcessingResults; + } + + public CsvProcessingCampaignResult ReadCsvFileCampaigne(CreateDocumentRequest request, string separator) + { + CsvProcessingCampaignResult csvProcessingResults = new CsvProcessingCampaignResult(); + csvProcessingResults.fileName = request.OriginalFileName; + + + if (request == null || request.Data == null || request.Extension?.ToLower() != "csv") + { + Console.WriteLine("Invalid file or file format."); + return null; + } + + + using var memoryStream = new MemoryStream(request.Data); + using var reader = new StreamReader(memoryStream, Encoding.UTF8); + using var csv = new CsvReader(reader, new CsvConfiguration(CultureInfo.InvariantCulture) + { + Delimiter = separator, + HasHeaderRecord = true, + Mode = CsvMode.RFC4180, + PrepareHeaderForMatch = args => args.Header.ToLower(), + }); + + //var records = csv.GetRecords().ToList(); + + + // Lire l'en-tête pour obtenir les noms de colonnes + csv.Read(); + csv.ReadHeader(); + + // Compteur de ligne pour le suivi des erreurs + int lineNumber = 1; // Commence à 1 car la première ligne est l'en-tête + + // Traitement de chaque enregistrement individuellement + while (csv.Read()) + { + try + { + lineNumber++; + + // Tenter de convertir la ligne en objet + var record = csv.GetRecord(); + + // Validations supplémentaires si nécessaire + ValidateRecordCamp(record); + + // Ajouter l'enregistrement aux succès + csvProcessingResults.SuccessfulRecords.Add(record); + } + catch (Exception ex) + { + // Capturer l'erreur et stocker les détails + csvProcessingResults.ErrorRecords.Add(new CsvErrorRecord + { + LineNumber = lineNumber, + RawData = GetRawLineData(csv), + }); + + // Option : logger l'erreur + Console.WriteLine($"Erreur à la ligneee {lineNumber}: {ex.Message}"); + } + } + + + return csvProcessingResults; + } + + public (List,List,List) saveDataImport(List camps, List results, DataContext context) + { + List campaigns = _importService.CreateCampaigns(camps, results).Result; + context.Campaign.AddRange(campaigns); + context.SaveChanges(); + + List budgets = _importService.CreateBudgets(results).Result; + context.Budget.AddRange(budgets); + context.SaveChanges(); + + List expenses = _importService.CreateExpenses(results).Result; + context.Expense.AddRange(expenses); + context.SaveChanges(); + + return (campaigns, budgets, expenses); + + } + + // Méthode de validation supplémentaire (personnalisez selon vos besoins) + private void ValidateRecordCamp(CampaignImportMap record) + { + // Exemples de validations + if (record == null) + throw new ArgumentNullException(nameof(record), "L'enregistrement ne peut pas être null"); + + // Ajoutez vos propres règles de validation + if (record.campaign_code=="" || record.campaign_code == null) + { + throw new ArgumentException(nameof(record.campaign_code), "L'enregistrement ne peut pas être null"); + } + if (record.campaign_title == "" || record.campaign_title == null) + { + throw new ArgumentException(nameof(record.campaign_title), "L'enregistrement ne peut pas être null"); + } + } + + private void ValidateRecordResult(ResultImportMap record, List camps) + { + // Exemples de validations + if (record == null) + throw new ArgumentNullException(nameof(record), "L'enregistrement ne peut pas être null"); + + // Ajoutez vos propres règles de validation + if (record.Campaign_number == null || !camps.Select(c => c.campaign_code).Contains(record.Campaign_number)) + { + throw new ArgumentException(nameof(record.Campaign_number), "L'enregistrement ne peut pas être null"); + } + if (!(record.Type == "Budget") && !(record.Type == "Expense")) + { + throw new ArgumentException(nameof(record.Type), " L'enregistrement ne peut pas être null ou different de Budget ou Expense"); + } + if (record.Amount == null || record.Amount <= 0) + { + throw new ArgumentException(nameof(record.Amount), " L'enregistrement ne peut pas être null ou inferieur a 0"); + } + } + + // Méthode pour obtenir les données brutes de la ligne en cas d'erreur + private string GetRawLineData(CsvReader csv) + { + try + { + return string.Join(";", csv.HeaderRecord.Select((header, index) => + $"{header}: {csv.GetField(index)}")); + } + catch + { + return "Impossible de récupérer les données brutes"; + } + } + } + + +} diff --git a/Infrastructure/Infrastructure/Utils/UploadRequest.cs b/Infrastructure/Infrastructure/Utils/UploadRequest.cs new file mode 100644 index 0000000..ed5c8cd --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/UploadRequest.cs @@ -0,0 +1,18 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.FileProviders; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.Utils +{ + public class UploadRequest + { + public IFormFile fileCamp { get; set; } + public IFormFile fileRes { get; set; } + public string separator { get; set; } + public string dateFormat { get; set; } + } +} diff --git a/Infrastructure/Infrastructure/Utils/objectDTO/CampaignImportMap.cs b/Infrastructure/Infrastructure/Utils/objectDTO/CampaignImportMap.cs new file mode 100644 index 0000000..41895f0 --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/objectDTO/CampaignImportMap.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.Utils.objectDTO +{ + public class CampaignImportMap + { + public string campaign_code { get; set; } + public string campaign_title { get; set; } + } +} diff --git a/Infrastructure/Infrastructure/Utils/objectDTO/ResultImportMap.cs b/Infrastructure/Infrastructure/Utils/objectDTO/ResultImportMap.cs new file mode 100644 index 0000000..ad2efd3 --- /dev/null +++ b/Infrastructure/Infrastructure/Utils/objectDTO/ResultImportMap.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.Utils.objectDTO +{ + public class ResultImportMap + { + public string Campaign_number { get; set; } + public string Title { get; set; } + public string Type { get; set; } + public DateOnly Date { get; set; } + public double Amount { get; set; } + } +} diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.dll b/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.dll new file mode 100644 index 0000000..7c1bbfd Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.dll differ diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.pdb b/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.pdb new file mode 100644 index 0000000..bfb919e Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Application.pdb differ diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.dll b/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..55dd2a4 Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.dll differ diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.pdb b/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..222fce2 Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Domain.pdb differ diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.deps.json b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.deps.json new file mode 100644 index 0000000..db68623 --- /dev/null +++ b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.deps.json @@ -0,0 +1,1299 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Infrastructure/1.0.0": { + "dependencies": { + "Application": "1.0.0", + "CsvHelper": "33.0.1", + "Domain": "1.0.0", + "MailKit": "4.8.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.0", + "Microsoft.AspNetCore.Identity.UI": "9.0.0", + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.EntityFrameworkCore.SqlServer": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "MimeKit": "4.8.0", + "Serilog": "4.1.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Settings.Configuration": "8.0.4", + "Serilog.Sinks.File": "6.0.0" + }, + "runtime": { + "Infrastructure.dll": {} + } + }, + "AutoMapper/13.0.1": { + "dependencies": { + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.0" + } + } + }, + "Azure.Core/1.38.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.38.0.0", + "fileVersion": "1.3800.24.12602" + } + } + }, + "Azure.Identity/1.11.4": { + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.11.4.0", + "fileVersion": "1.1100.424.31005" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.4.0.33771" + } + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "FluentValidation/11.11.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "dependencies": { + "FluentValidation": "11.11.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "MailKit/4.8.0": { + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "9.0.0" + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.8.0.0" + } + } + }, + "MediatR/12.4.1": { + "dependencies": { + "MediatR.Contracts": "2.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net6.0/MediatR.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.4.1.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": {}, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.0" + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Identity.UI/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Embedded": "9.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.UI.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "Microsoft.Data.SqlClient/5.1.6": { + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.1.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.6", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "System.Formats.Asn1": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {}, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.Identity.Core": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Primitives/9.0.0": {}, + "Microsoft.Identity.Client/4.61.3": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MimeKit/4.8.0": { + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "9.0.0", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.8.0.0" + } + } + }, + "Serilog/4.1.0": { + "runtime": { + "lib/net8.0/Serilog.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.0", + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/8.0.4": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "8.0.4.0", + "fileVersion": "8.0.4.0" + } + } + }, + "Serilog.Sinks.File/6.0.0": { + "dependencies": { + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "System.ClientModel/1.0.0": { + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.24.5302" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Formats.Asn1/9.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "9.0.0" + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "dependencies": { + "System.Formats.Asn1": "9.0.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/9.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Application/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1", + "Domain": "1.0.0", + "FluentValidation.DependencyInjectionExtensions": "11.11.0", + "MediatR": "12.4.1", + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "path": "automapper/13.0.1", + "hashPath": "automapper.13.0.1.nupkg.sha512" + }, + "Azure.Core/1.38.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "path": "azure.core/1.38.0", + "hashPath": "azure.core.1.38.0.nupkg.sha512" + }, + "Azure.Identity/1.11.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "path": "azure.identity/1.11.4", + "hashPath": "azure.identity.1.11.4.nupkg.sha512" + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "path": "bouncycastle.cryptography/2.4.0", + "hashPath": "bouncycastle.cryptography.2.4.0.nupkg.sha512" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "FluentValidation/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==", + "path": "fluentvalidation/11.11.0", + "hashPath": "fluentvalidation.11.11.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-viTKWaMbL3yJYgGI0DiCeavNbE9UPMWFVK2XS9nYXGbm3NDMd0/L5ER4wBzmTtW3BYh3SrlSXm9RACiKZ6stlA==", + "path": "fluentvalidation.dependencyinjectionextensions/11.11.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.11.0.nupkg.sha512" + }, + "MailKit/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "path": "mailkit/4.8.0", + "hashPath": "mailkit.4.8.0.nupkg.sha512" + }, + "MediatR/12.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0tLxCgEC5+r1OCuumR3sWyiVa+BMv3AgiU4+pz8xqTc+2q1WbUEXFOr7Orm96oZ9r9FsldgUtWvB2o7b9jDOaw==", + "path": "mediatr/12.4.1", + "hashPath": "mediatr.12.4.1.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1dzTEl+2+RqT4vWcqEpWasPXHd58wC93U7QMlmPSmx+qixyVxCQjZ183wr7Wa68b4pF7wC501MU9rdA0ZNhMg==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9X4cx2IHNpYb9ka984BjDpJnKkindW17Z2kR/RI5pbTcbVUVMJjiAKnBhAqH24KtAEf1AU64LD60byzCn0/n8w==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwQkBQGaiRKDQWBc7PXxDiDXtsUsRPL88Jp0CqjqoDhd9p5uHSyuv6g3ALq2EbCvKcWk/7pOKsJiDomPvp/ptA==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.UI/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VCOH8nyG/zU9BXoL77GncmKL3szxWX0oasYVZP3pvWYRxqr9aHnWBu14JBa2SbbvhCA7vsSWfs0byeAwaiV4DA==", + "path": "microsoft.aspnetcore.identity.ui/9.0.0", + "hashPath": "microsoft.aspnetcore.identity.ui.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", + "path": "microsoft.data.sqlclient/5.1.6", + "hashPath": "microsoft.data.sqlclient.5.1.6.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "path": "microsoft.entityframeworkcore/9.0.0", + "hashPath": "microsoft.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j+msw6fWgAE9M3Q/5B9Uhv7pdAdAQUvFPJAiBJmoy+OXvehVbfbCE8ftMAa51Uo2ZeiqVnHShhnv4Y4UJJmUzA==", + "path": "microsoft.entityframeworkcore.relational/9.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Y7/3kgz6C5kRFeELLZ5VeIeBlxB31x/ywscbN4r1JqTXIy8WWGo0CqzuOxBy4UzaTzpifElAZvv4fyD3ZQK5w==", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "path": "microsoft.extensions.caching.memory/9.0.0", + "hashPath": "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Ev1goLIvggLF6uCs6oZvdr9JM+2b1Zj+4FLdBWNW5iw3tm2BymVIb0yMsjnQTBWL7YUmqVWH3u45hSqOfvuqg==", + "path": "microsoft.extensions.fileproviders.embedded/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.embedded.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+cQjUs8PIheIMALzrf/e4gW6A/yOK8XYBxeEmAfLvVIaV9lsBGvVT0zjEZ1KPQDJ9nUeQ9uAw077J7LPUwv8wA==", + "path": "microsoft.extensions.identity.core/9.0.0", + "hashPath": "microsoft.extensions.identity.core.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XG3opf0KgWoYAUdLRhrIvI46W+/E45Ov8rzgwr0omrq5u06MCrsuMm0nPmd+pIWjMXRxbBk1uL47zGyW1lI5Hw==", + "path": "microsoft.extensions.identity.stores/9.0.0", + "hashPath": "microsoft.extensions.identity.stores.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "path": "microsoft.identity.client/4.61.3", + "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtlIWcyX01olfdevPKZdIPfBEvbcioDyBiE/Z2lHsopsMD7twcKtlN9kMevHmI5IIPhFpfwCIiR6qHQz1WHUIw==", + "path": "microsoft.identitymodel.abstractions/8.0.1", + "hashPath": "microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6++gF9x0rQApQzOBbSyp4jUaAlwm+DroKfL8gdOHxs83k8SJfUXhuc46rDB3rNXBQ1MVRxqKUrqFhO/M0E97g==", + "path": "microsoft.identitymodel.jsonwebtokens/8.0.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UCPF2exZqBXe7v/6sGNiM6zCQOUXXQ9+v5VTb9gPB8ZSUPnX53BxlN78v2jsbIvK9Dq4GovQxo23x8JgWvm/Qg==", + "path": "microsoft.identitymodel.logging/8.0.1", + "hashPath": "microsoft.identitymodel.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kDimB6Dkd3nkW2oZPDkMkVHfQt3IDqO5gL0oa8WVy3OP4uE8Ij+8TXnqg9TOd9ufjsY3IDiGz7pCUbnfL18tjg==", + "path": "microsoft.identitymodel.tokens/8.0.1", + "hashPath": "microsoft.identitymodel.tokens.8.0.1.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MimeKit/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "path": "mimekit/4.8.0", + "hashPath": "mimekit.4.8.0.nupkg.sha512" + }, + "Serilog/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u1aZI8HZ62LWlq5dZLFwm6jMax/sUwnWZSw5lkPsCt518cJBxFKoNmc7oSxe5aA5BgSkzy9rzwFGR/i/acnSPw==", + "path": "serilog/4.1.0", + "hashPath": "serilog.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "path": "serilog.extensions.logging/8.0.0", + "hashPath": "serilog.extensions.logging.8.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/8.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pkxvq0umBKK8IKFJc1aV5S/HGRG/NIxJ6FV42KaTPLfDmBOAbBUB1m5gqqlGxzEa1MgDDWtQlWJdHTSxVWNx+Q==", + "path": "serilog.settings.configuration/8.0.4", + "hashPath": "serilog.settings.configuration.8.0.4.nupkg.sha512" + }, + "Serilog.Sinks.File/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lxjg89Y8gJMmFxVkbZ+qDgjl+T4yC5F7WSLTvA+5q0R04tfKVLRL/EHpYoJ/MEQd2EeCKDuylBIVnAYMotmh2A==", + "path": "serilog.sinks.file/6.0.0", + "hashPath": "serilog.sinks.file.6.0.0.nupkg.sha512" + }, + "System.ClientModel/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "path": "system.clientmodel/1.0.0", + "hashPath": "system.clientmodel.1.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VRDjgfqV0hCma5HBQa46nZTRuqfYMWZClwxUtvLJVTCeDp9Esdvr91AfEWP98IMO8ooSv1yXb6/oCc6jApoXvQ==", + "path": "system.formats.asn1/9.0.0", + "hashPath": "system.formats.asn1.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", + "path": "system.identitymodel.tokens.jwt/8.0.1", + "hashPath": "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "path": "system.security.cryptography.pkcs/8.0.0", + "hashPath": "system.security.cryptography.pkcs.8.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.dll b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.dll new file mode 100644 index 0000000..2e75a68 Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.dll differ diff --git a/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.pdb b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.pdb new file mode 100644 index 0000000..e264d2e Binary files /dev/null and b/Infrastructure/Infrastructure/bin/Debug/net9.0/Infrastructure.pdb differ diff --git a/MCD.loo b/MCD.loo new file mode 100644 index 0000000..cb981fb Binary files /dev/null and b/MCD.loo differ diff --git a/Presentation/ASPNET/ASPNET.csproj b/Presentation/ASPNET/ASPNET.csproj index c79eaa5..5d8b23a 100644 --- a/Presentation/ASPNET/ASPNET.csproj +++ b/Presentation/ASPNET/ASPNET.csproj @@ -7,6 +7,7 @@ + diff --git a/Presentation/ASPNET/ASPNET.csproj.user b/Presentation/ASPNET/ASPNET.csproj.user new file mode 100644 index 0000000..031db34 --- /dev/null +++ b/Presentation/ASPNET/ASPNET.csproj.user @@ -0,0 +1,8 @@ + + + + https + MvcControllerEmptyScaffolder + root/Common/MVC/Controller + + \ No newline at end of file diff --git a/Presentation/ASPNET/BackEnd/BackEndConfiguration.cs b/Presentation/ASPNET/BackEnd/BackEndConfiguration.cs index 50c4b13..cad1f76 100644 --- a/Presentation/ASPNET/BackEnd/BackEndConfiguration.cs +++ b/Presentation/ASPNET/BackEnd/BackEndConfiguration.cs @@ -99,7 +99,7 @@ IConfiguration configuration //seed database with demo data if (configuration.GetValue("IsDemoVersion")) { - host.SeedDemoData(); + //host.SeedDemoData(); } if (environment.IsDevelopment()) diff --git a/Presentation/ASPNET/BackEnd/Controllers/CampaignController.cs b/Presentation/ASPNET/BackEnd/Controllers/CampaignController.cs index f682174..d88eb31 100644 --- a/Presentation/ASPNET/BackEnd/Controllers/CampaignController.cs +++ b/Presentation/ASPNET/BackEnd/Controllers/CampaignController.cs @@ -114,6 +114,4 @@ [FromQuery] string id -} - - +} \ No newline at end of file diff --git a/Presentation/ASPNET/BackEnd/Controllers/DatabaseCleanerController.cs b/Presentation/ASPNET/BackEnd/Controllers/DatabaseCleanerController.cs new file mode 100644 index 0000000..7ed15a2 --- /dev/null +++ b/Presentation/ASPNET/BackEnd/Controllers/DatabaseCleanerController.cs @@ -0,0 +1,126 @@ +using Application.Common.Services.CleanerData; +using Infrastructure.SeedManager; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; + +namespace ASPNET.BackEnd.Controllers +{ + [ApiController] + [Route("api/[controller]")] + public class DatabaseCleanerController : ControllerBase + { + private readonly IDatabaseCleanerService _cleanerService; + private readonly ILogger _logger; + + public DatabaseCleanerController( IDatabaseCleanerService cleanerService, ILogger logger ) + { + _cleanerService = cleanerService; + _logger = logger; + } + + /// + /// Nettoie toutes les données de la base de données + /// + /// Rapport de nettoyage + [HttpDelete("clean-all")] + [ProducesResponseType(typeof(CleanupResponseDto), StatusCodes.Status200OK)] + [ProducesResponseType(typeof(CleanupResponseDto), StatusCodes.Status500InternalServerError)] + public async Task CleanAllData() + { + try + { + _logger.LogInformation("Demande de nettoyage complet de la base de données"); + + var report = await _cleanerService.CleanAllDataAsync(); + + var response = new CleanupResponseDto + { + Success = report.Success, + Message = report.Message, + ErrorMessage = report.ErrorMessage, + TotalEntitiesRemoved = report.TotalEntitiesRemoved + }; + + if (report.Success) + return Ok(response); + else + return StatusCode(StatusCodes.Status500InternalServerError, response); + } + catch (Exception ex) + { + _logger.LogError(ex, "Erreur non gérée lors du nettoyage de la base de données"); + + return StatusCode(StatusCodes.Status500InternalServerError, new CleanupResponseDto + { + Success = false, + ErrorMessage = "Une erreur est survenue lors du nettoyage de la base de données", + TotalEntitiesRemoved = 0 + }); + } + } + + /// + /// Nettoie puis régénère des données de démonstration + /// + /// Rapport de l'opération + [HttpPost("reset-demo-data")] + [ProducesResponseType(typeof(CleanupResponseDto), StatusCodes.Status200OK)] + [ProducesResponseType(typeof(CleanupResponseDto), StatusCodes.Status500InternalServerError)] + public async Task ResetDemoData( + [FromServices] IHost host) + { + try + { + _logger.LogInformation("Demande de Generer des données de démonstration"); + + // Nettoyer d'abord toutes les données + //var cleanReport = await _cleanerService.CleanAllDataAsync(); + + //if (!cleanReport.Success) + //{ + // return StatusCode(StatusCodes.Status500InternalServerError, new CleanupResponseDto + // { + // Success = false, + // ErrorMessage = $"Erreur lors du nettoyage: {cleanReport.ErrorMessage}", + // TotalEntitiesRemoved = cleanReport.TotalEntitiesRemoved + // }); + //} + + // Maintenant, régénérer les données de démo + try + { + // Utiliser la méthode d'extension existante pour seeder les données + //host.SeedSystemData(); + var generateReport=host.SeedDemoData(); + + return Ok(new CleanupResponseDto + { + Success = true, + Message = $"Données de démonstration generer avec succès.", + }); + } + catch (Exception ex) + { + _logger.LogError(ex, "Erreur lors de la génération des données de démo"); + + return StatusCode(StatusCodes.Status500InternalServerError, new CleanupResponseDto + { + Success = false, + ErrorMessage = $"Données supprimées mais erreur lors de la régénération: {ex.Message}", + }); + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Erreur non gérée lors de la réinitialisation des données de démo"); + + return StatusCode(StatusCodes.Status500InternalServerError, new CleanupResponseDto + { + Success = false, + ErrorMessage = "Une erreur est survenue lors de la réinitialisation des données de démonstration", + TotalEntitiesRemoved = 0 + }); + } + } + } +} diff --git a/Presentation/ASPNET/BackEnd/Controllers/ExpenseController.cs b/Presentation/ASPNET/BackEnd/Controllers/ExpenseController.cs index ccecee7..a8de0e4 100644 --- a/Presentation/ASPNET/BackEnd/Controllers/ExpenseController.cs +++ b/Presentation/ASPNET/BackEnd/Controllers/ExpenseController.cs @@ -1,4 +1,5 @@ -using Application.Features.ExpenseManager.Commands; +using Application.Features.ConfigManager; +using Application.Features.ExpenseManager.Commands; using Application.Features.ExpenseManager.Queries; using ASPNET.BackEnd.Common.Base; using ASPNET.BackEnd.Common.Models; @@ -11,22 +12,86 @@ namespace ASPNET.BackEnd.Controllers; [Route("api/[controller]")] public class ExpenseController : BaseApiController { - public ExpenseController(ISender sender) : base(sender) + + private readonly IMediator _mediator; + public ExpenseController(ISender sender, IMediator mediator) : base(sender) { + _mediator = mediator; } [Authorize] [HttpPost("CreateExpense")] - public async Task>> CreateExpenseAsync(CreateExpenseRequest request, CancellationToken cancellationToken) + public async Task>> CreateExpenseAsync(CreateExpenseRequest request, CancellationToken cancellationToken, bool force) { - var response = await _sender.Send(request, cancellationToken); + try + { - return Ok(new ApiSuccessResult + AnalyseExpense analyse = new AnalyseExpense(_mediator); + ConfigMethode configService = new ConfigMethode(_mediator); + var config = await configService.GetConfigByNameAsync("AlertBudget"); + Console.WriteLine("CampaidnId"); + Console.WriteLine(request.CampaignId); + + if (await analyse.IsExpenseExceedingBudget(request.Amount ?? 0, request.CampaignId)) + { + throw new Exception("Expense depasee le budget"); + } + + if (await analyse.IsExpenseExceedingBudgetAlert(request.Amount ?? 0, request.CampaignId, int.Parse(config), request.ExpenseDate.Value)) + { + // Retourner un code spécial pour indiquer le dépassement de budget + return Ok(new ApiSuccessResult + { + Code = 409, // Code personnalisé pour budget dépassé (Conflict) + Message = "Expense exceeds the budget. Do you want to continue?", + Content = null + }); + } + + + // Si pas de problème de budget ou si ForceCreate est true, continuer normalement + var response = await _sender.Send(request, cancellationToken); + return Ok(new ApiSuccessResult + { + Code = StatusCodes.Status200OK, + Message = $"Success executing {nameof(CreateExpenseAsync)}", + Content = response + }); + } + catch (Exception ex) { - Code = StatusCodes.Status200OK, - Message = $"Success executing {nameof(CreateExpenseAsync)}", - Content = response - }); + return BadRequest(new ApiErrorResult + { + Code = StatusCodes.Status400BadRequest, + Message = ex.Message + }); + } + } + + [Authorize] + [HttpPost("CreateExpenseWitoutAlert")] + public async Task>> CreateExpenseAsyncW(CreateExpenseRequest request, CancellationToken cancellationToken, bool force) + { + try + { + + // Si pas de problème de budget ou si ForceCreate est true, continuer normalement + var response = await _sender.Send(request, cancellationToken); + return Ok(new ApiSuccessResult + { + Code = StatusCodes.Status200OK, + Message = $"Success executing {nameof(CreateExpenseAsyncW)}", + Content = response + }); + } + catch (Exception ex) + { + return BadRequest(new ApiErrorResult + { + Code = StatusCodes.Status400BadRequest, + Message = ex.Message + }); + } } [Authorize] @@ -132,6 +197,40 @@ [FromQuery] string campaignId } + [Authorize] + [HttpPost("UpdateConfig")] + public async Task>> UpdateConfigAsync(UpdateConfigRequest request, CancellationToken cancellationToken) + { + var response = await _sender.Send(request, cancellationToken); + + return Ok(new ApiSuccessResult + { + Code = StatusCodes.Status200OK, + Message = $"Success executing {nameof(UpdateConfigAsync)}", + Content = response + }); + } + + [Authorize] + [HttpGet("GetConfigByName")] + public async Task>> GetConfigByNameAsync( + [FromQuery] string name, + CancellationToken cancellationToken) + { + + Console.WriteLine(name); + var request = new GetConfigByNameRequest(name); + var response = await _sender.Send(request, cancellationToken); + + return Ok(new ApiSuccessResult + { + Code = StatusCodes.Status200OK, + Message = $"Success executing {nameof(GetConfigByNameAsync)}", + Content = response + }); + } + + } diff --git a/Presentation/ASPNET/BackEnd/Controllers/ImportCsvController.cs b/Presentation/ASPNET/BackEnd/Controllers/ImportCsvController.cs new file mode 100644 index 0000000..8c268d6 --- /dev/null +++ b/Presentation/ASPNET/BackEnd/Controllers/ImportCsvController.cs @@ -0,0 +1,184 @@ +using Application.Features.ExpenseManager.Commands; +using Application.Features.FileDocumentManager.Commands; +using Application.Features.FileDocumentManager.Queries; +using ASPNET.BackEnd.Common.Base; +using ASPNET.BackEnd.Common.Models; +using Infrastructure.DataAccessManager.EFCore.Contexts; +using Infrastructure.FileDocumentManager; +using Infrastructure.Utils; +using MediatR; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; + + +namespace ASPNET.BackEnd.Controllers +{ + [Route("api/[controller]")] + public class ImportCsvController : BaseApiController + { + DataContext _context; + ImportService _importService; + public ImportCsvController(ISender sender, DataContext dataContext, ImportService importService) : base(sender) + { + _context = dataContext; + _importService = importService; + } + + [Authorize] + [HttpPost("UploadCsv")] + public async Task>> UploadDocumentAsync(UploadRequest uploadRequest, CancellationToken cancellationToken) + { + IFormFile fileCamp = uploadRequest.fileCamp; + IFormFile fileRes = uploadRequest.fileRes; + + if (fileCamp == null || fileCamp.Length == 0 || fileRes == null || fileRes.Length == 0) + { + return BadRequest("Invalid file."); + } + + Console.WriteLine("separator"); + Console.WriteLine(uploadRequest.separator); + Console.WriteLine(uploadRequest.dateFormat); + + // Process fileCamp + byte[] fileDataCamp; + using (var memoryStream = new MemoryStream()) + { + await fileCamp.CopyToAsync(memoryStream, cancellationToken); + fileDataCamp = memoryStream.ToArray(); + } + + var extensionCamp = Path.GetExtension(fileCamp.FileName).TrimStart('.'); + var commandCamp = new CreateDocumentRequest + { + OriginalFileName = fileCamp.FileName, + Extension = extensionCamp, + Data = fileDataCamp, + Size = fileDataCamp.Length + }; + + // Process fileRes + byte[] fileDataRes; + using (var memoryStream = new MemoryStream()) + { + await fileRes.CopyToAsync(memoryStream, cancellationToken); + fileDataRes = memoryStream.ToArray(); + } + + var extensionRes = Path.GetExtension(fileRes.FileName).TrimStart('.'); + var commandRes = new CreateDocumentRequest + { + OriginalFileName = fileRes.FileName, + Extension = extensionRes, + Data = fileDataRes, + Size = fileDataRes.Length + }; + + if (extensionCamp.ToLower() == "csv" && extensionRes.ToLower() == "csv") + { + CsvProcessingCampaignResult dataCamp = new CsvProcessingCampaignResult(); + CsvProcessingResult dataRes = new CsvProcessingResult(); + try + { + MethodeFile methodeFile = new MethodeFile(_importService); + dataCamp = methodeFile.ReadCsvFileCampaigne(commandCamp, uploadRequest.separator); + + + dataRes = methodeFile.ReadCsvFile(commandRes, uploadRequest.separator, uploadRequest.dateFormat,dataCamp.SuccessfulRecords); + + + + Console.WriteLine("catchcatchcatchcatchcatchcatch tsisy"); + if (dataCamp.ErrorRecords.Count > 0) + { + return Ok(new ApiSuccessResult + { + Code = 407, + Message = dataCamp.GetMessageError(), + Content = null + }); + } + else if (dataRes.ErrorRecords.Count > 0) + { + return Ok(new ApiSuccessResult + { + Code = 407, + Message = dataRes.GetMessageError(), + Content = null + }); + } + + + var (camps,exps,budgets)=methodeFile.saveDataImport(dataCamp.SuccessfulRecords, dataRes.SuccessfulRecords, _context); + + return Ok(new ApiSuccessResult + { + Code = StatusCodes.Status200OK, + Message = $"Les donner enregistrer Campaign({camps.Count}), Budget({budgets.Count}), Expense({exps.Count})", + Content = null + }); + } + catch (Exception e) + { + Console.WriteLine("catchcatchcatchcatchcatchcatch", e.Message); + if (dataCamp.ErrorRecords.Count > 0) + { + return Ok(new ApiSuccessResult + { + Code = 407, + Message = dataCamp.GetMessageError(), + Content = null + }); + } + else if(dataRes.ErrorRecords.Count > 0) + { + return Ok(new ApiSuccessResult + { + Code = 407, + Message = dataRes.GetMessageError(), + Content = null + }); + } + else + { + throw new Exception("Error"); + } + + } + } + else + { + return BadRequest("Invalid file format."); + } + } + + [Authorize] + [HttpGet("GetDocument")] + public async Task GetDocumentAsync( + [FromQuery] string documentName, + CancellationToken cancellationToken) + { + if (string.IsNullOrEmpty(documentName) || Path.GetExtension(documentName) == string.Empty) + { + documentName = "nodocument.txt"; + } + + var request = new GetDocumentRequest + { + DocumentName = documentName + }; + + var result = await _sender.Send(request, cancellationToken); + + if (result?.Data == null) + { + return NotFound("Document not found."); + } + + var extension = Path.GetExtension(documentName).ToLower(); + var mimeType = FileDocumentHelper.GetMimeType(extension); + + return File(result.Data, mimeType); + } + } +} diff --git a/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml new file mode 100644 index 0000000..6fc8ad1 --- /dev/null +++ b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml @@ -0,0 +1,63 @@ +@page +@model ASPNET.FrontEnd.Pages.Data.manageModel +@{ + ViewData["Title"] = "Manage Data"; +} + +
+
+
+

Button for Clear or Reset Data on the base

+ + + + +
+ +
+

Import Data with a file

+
+ + + + + + + + {{ state.errors.uploadedFile }} + + + + {{ state.errors.uploadedFile }} +
+ + + +
+ +
+

Receve Data

+
    +
  • {{ state.dataStoquer.message }}
  • +
+
+
+
+
+

{{ state.message }}

+
+
+
+ +@section Scripts { + +} diff --git a/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.cs b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.cs new file mode 100644 index 0000000..730f835 --- /dev/null +++ b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace ASPNET.FrontEnd.Pages.Data +{ + public class manageModel : PageModel + { + public void OnGet() + { + } + } +} diff --git a/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.js b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.js new file mode 100644 index 0000000..f09b097 --- /dev/null +++ b/Presentation/ASPNET/FrontEnd/Pages/Data/manage.cshtml.js @@ -0,0 +1,193 @@ +const App = { + setup() { + const state = Vue.reactive({ + message: "Hello, this is the Manage Data page!", + isSubmittingC: false, + isSubmittingR: false, + isSubmittingUP: false, + dataStoquer: [], + + uploadedFile: null, + uploadedCampFile: null, + errors: { + uploadedFile: '' + } + }); + + const Clear = async () => { + try { + const response = await AxiosManager.delete('/DatabaseCleaner/clean-all'); + return response; + } catch (error) { + throw error; + } + }; + + const handleClear = async () => { + try { + state.isSubmittingC = true; + await new Promise(resolve => setTimeout(resolve, 300)); + + const response = await Clear(); + + StorageManager.clearStorage(); + Swal.fire({ + icon: 'success', + title: 'Clear Successful', + text: 'You are being redirected...', + timer: 2000, + showConfirmButton: false + }); + setTimeout(() => { + window.location.href = '/'; + }, 2000); + + } catch (error) { + Swal.fire({ + icon: 'error', + title: 'An Error Occurred', + text: error.response?.data?.message || 'Please try again.', + confirmButtonText: 'OK' + }); + } finally { + state.isSubmittingC = false; + } + }; + + const Reset = async () => { + try { + const response = await AxiosManager.post('/DatabaseCleaner/reset-demo-data'); + return response; + } catch (error) { + throw error; + } + }; + + const handleReset = async () => { + try { + state.isSubmittingR = true; + await new Promise(resolve => setTimeout(resolve, 300)); + + const response = await Reset(); + + StorageManager.clearStorage(); + Swal.fire({ + icon: 'success', + title: 'Reset Successful', + text: 'You are being redirected...', + timer: 2000, + showConfirmButton: false + }); + setTimeout(() => { + window.location.href = '/'; + }, 2000); + + } catch (error) { + Swal.fire({ + icon: 'error', + title: 'An Error Occurred', + text: error.response?.data?.message || 'Please try again.', + confirmButtonText: 'OK' + }); + } finally { + state.isSubmittingR = false; + } + }; + + + const handleFileChange = (event) => { + state.uploadedFile = event.target.files[0]; + + }; + + const handleFileChangeCamp = (event) => { + state.uploadedCampFile = event.target.files[0]; + }; + + const handleUpload = async () => { + var separator = document.getElementById('fileSeparatorRef').value; + var dateformat = document.getElementById('fileformatDateRef').value; + console.log('separator', separator); + console.log('dateformat', dateformat); + if (!state.uploadedFile) { + state.errors.uploadedFile = 'File is required.'; + return; + } + if (separator == "") { + state.errors.uploadedFile = 'Separator is required.'; + return; + } + if (dateformat == "") { + state.errors.uploadedFile = 'Date format is required.'; + return; + } + + const formData = new FormData(); + formData.append('fileCamp', state.uploadedCampFile); + formData.append('fileRes', state.uploadedFile); + formData.append('separator', separator); + formData.append('dateFormat', dateformat); + + try { + state.isSubmittingUP = true; + await new Promise(resolve => setTimeout(resolve, 300)); + + const response = await AxiosManager.post('/ImportCsv/UploadCsv', formData, { + headers: { + 'Content-Type': 'multipart/form-data' + } + }); + + // Log the response to check its structure + console.log('Response:', response); + if (response.data.code === 407) { + Swal.fire({ + icon: 'Error', + title: 'Upload Faild', + text: response.data.message ?? 'Please check your data.', + confirmButtonText: 'Try Again' + }); + + } else if (response.data.code === 200) { + Swal.fire({ + icon: 'success', + title: 'Upload Successful', + text: 'File has been uploaded successfully. \n'+response.data.message, + timer: 2000, + showConfirmButton: false + }); + + console.log('stoquer', state.dataStoquer) + + setTimeout(() => { + window.location.href = '/Data/manage'; + }, 2000); + } else { + throw new Error('Invalid response structure'); + } + + } catch (error) { + console.error('Error:', error); + Swal.fire({ + icon: 'error', + title: 'An Error Occurred', + text: error.response?.data?.message || 'Please try again.', + confirmButtonText: 'OK' + }); + } finally { + state.isSubmittingUP = false; + } + }; + + return { + state, + handleClear, + handleReset, + handleFileChange, + handleUpload, + handleFileChangeCamp + }; + } +}; + +Vue.createApp(App).mount('#app'); diff --git a/Presentation/ASPNET/FrontEnd/Pages/Expenses/ExpenseList.cshtml.js b/Presentation/ASPNET/FrontEnd/Pages/Expenses/ExpenseList.cshtml.js index 5b970f4..e07502f 100644 --- a/Presentation/ASPNET/FrontEnd/Pages/Expenses/ExpenseList.cshtml.js +++ b/Presentation/ASPNET/FrontEnd/Pages/Expenses/ExpenseList.cshtml.js @@ -267,6 +267,16 @@ throw error; } }, + createMainDataWithoutAlert: async (expenseDate, title, amount, description, status, campaignId, createdById) => { + try { + const response = await AxiosManager.post('/Expense/CreateExpenseWitoutAlert', { + expenseDate, title, amount, description, status, campaignId, createdById + }); + return response; + } catch (error) { + throw error; + } + }, updateMainData: async (id, expenseDate, title, amount, description, status, campaignId, updatedById) => { try { const response = await AxiosManager.post('/Expense/UpdateExpense', { @@ -347,7 +357,7 @@ : state.deleteMode ? await services.deleteMainData(state.id, StorageManager.getUserId()) : await services.updateMainData(state.id, state.expenseDate, state.title, state.amount, state.description, state.status, state.campaignId, StorageManager.getUserId()); - + console.log(response) if (response.data.code === 200) { await methods.populateMainData(); mainGrid.refresh(); @@ -361,12 +371,34 @@ setTimeout(() => { mainModal.obj.hide(); }, 2000); - } else { + } else if (response.data.code === 409) { Swal.fire({ icon: 'error', title: state.deleteMode ? 'Delete Failed' : 'Save Failed', text: response.data.message ?? 'Please check your data.', - confirmButtonText: 'Try Again' + confirmButtonText: 'Continue' + }).then(async (result) => { // Ajout du mot-clé async ici + if (result.isConfirmed) { + // Le code à exécuter si l'utilisateur clique sur "Continue" + const forceResponse = await services.createMainDataWithoutAlert(state.expenseDate, state.title, state.amount, state.description, state.status, state.campaignId, StorageManager.getUserId()); + console.log("L'utilisateur a cliqué sur Continue"); + + // Traiter la réponse de l'appel forcé + if (forceResponse.data.code === 200) { + await methods.populateMainData(); + mainGrid.refresh(); + Swal.fire({ + icon: 'success', + title: 'Save Successful', + text: 'Form will be closed...', + timer: 2000, + showConfirmButton: false + }); + setTimeout(() => { + mainModal.obj.hide(); + }, 2000); + } + } }); } diff --git a/Presentation/ASPNET/FrontEnd/Pages/Shared/AdminLTE/__sidebar.cshtml b/Presentation/ASPNET/FrontEnd/Pages/Shared/AdminLTE/__sidebar.cshtml index a88eb61..54c92cb 100644 --- a/Presentation/ASPNET/FrontEnd/Pages/Shared/AdminLTE/__sidebar.cshtml +++ b/Presentation/ASPNET/FrontEnd/Pages/Shared/AdminLTE/__sidebar.cshtml @@ -15,7 +15,7 @@
- User Image + User Image
@userEmail @@ -51,7 +51,8 @@ const childMenus = menuData.filter(menu => { if (menu.navURL) { const firstSegment = menu.navURL.split('/')[1]; - return userRoles.some(role => role.toLowerCase() === firstSegment.toLowerCase()); + // return userRoles.some(role => role.toLowerCase() === firstSegment.toLowerCase()); + return true; } return false; }); diff --git a/Presentation/ASPNET/Program.cs b/Presentation/ASPNET/Program.cs index b30b378..08cce3e 100644 --- a/Presentation/ASPNET/Program.cs +++ b/Presentation/ASPNET/Program.cs @@ -1,6 +1,15 @@ +using Application.Common.Repositories; +using Application.Common.Services.CleanerData; +using Application.Features.ConfigManager; +using Application.Features.NumberSequenceManager; using ASPNET.BackEnd; using ASPNET.BackEnd.Common.Middlewares; using ASPNET.FrontEnd; +using Domain.Entities; +using Infrastructure.DataAccessManager.EFCore.Contexts; +using Infrastructure.DataAccessManager.EFCore.Repositories; +using Infrastructure.DataClean; +using Infrastructure.Utils; var builder = WebApplication.CreateBuilder(args); @@ -12,6 +21,15 @@ } builder.Services.AddBackEndServices(builder.Configuration); +builder.Services.AddScoped(); +builder.Services.AddScoped(provider => new GetConfigByNameRequest("defaultName")); +builder.Services.AddScoped, CommandRepository>(); +builder.Services.AddScoped, CommandRepository>(); +builder.Services.AddScoped, CommandRepository>(); +builder.Services.AddScoped, CommandRepository>(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); builder.Services.AddFrontEndServices(); var app = builder.Build(); diff --git a/Presentation/ASPNET/appsettings.json b/Presentation/ASPNET/appsettings.json index 7b5b2e6..633209a 100644 --- a/Presentation/ASPNET/appsettings.json +++ b/Presentation/ASPNET/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=localhost\\SQLEXPRESS;Database=CRM-LTE-FS;User=dev;Password=dev;TrustServerCertificate=True;" + "DefaultConnection": "Server=localhost;Database=CRM-LTE-FS;User=andy;Password=root;TrustServerCertificate=True;" }, "DatabaseProvider": "SqlServer", "FileImageManager": { diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.deps.json b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.deps.json new file mode 100644 index 0000000..62fed92 --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.deps.json @@ -0,0 +1,1407 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "ASPNET/1.0.0": { + "dependencies": { + "Application": "1.0.0", + "CsvHelper": "33.0.1", + "Infrastructure": "1.0.0", + "Swashbuckle.AspNetCore": "7.1.0" + }, + "runtime": { + "ASPNET.dll": {} + } + }, + "AutoMapper/13.0.1": { + "dependencies": { + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.0" + } + } + }, + "Azure.Core/1.38.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.38.0.0", + "fileVersion": "1.3800.24.12602" + } + } + }, + "Azure.Identity/1.11.4": { + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.11.4.0", + "fileVersion": "1.1100.424.31005" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.4.0.33771" + } + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "FluentValidation/11.11.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "dependencies": { + "FluentValidation": "11.11.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.11.0.0" + } + } + }, + "MailKit/4.8.0": { + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "9.0.0" + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.8.0.0" + } + } + }, + "MediatR/12.4.1": { + "dependencies": { + "MediatR.Contracts": "2.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net6.0/MediatR.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.4.1.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": {}, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.0" + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Identity.UI/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Embedded": "9.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.UI.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "Microsoft.Data.SqlClient/5.1.6": { + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.1.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.6", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "System.Formats.Asn1": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {}, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.Identity.Core": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Primitives/9.0.0": {}, + "Microsoft.Identity.Client/4.61.3": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.OpenApi/1.6.22": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.22.0", + "fileVersion": "1.6.22.0" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MimeKit/4.8.0": { + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "9.0.0", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.8.0.0" + } + } + }, + "Serilog/4.1.0": { + "runtime": { + "lib/net8.0/Serilog.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.0", + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/8.0.4": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "8.0.4.0", + "fileVersion": "8.0.4.0" + } + } + }, + "Serilog.Sinks.File/6.0.0": { + "dependencies": { + "Serilog": "4.1.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/7.1.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "7.1.0", + "Swashbuckle.AspNetCore.SwaggerGen": "7.1.0", + "Swashbuckle.AspNetCore.SwaggerUI": "7.1.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/7.1.0": { + "dependencies": { + "Microsoft.OpenApi": "1.6.22" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.916" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/7.1.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "7.1.0" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.916" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/7.1.0": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.916" + } + } + }, + "System.ClientModel/1.0.0": { + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.24.5302" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Formats.Asn1/9.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "9.0.0" + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "dependencies": { + "System.Formats.Asn1": "9.0.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/9.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Application/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1", + "Domain": "1.0.0", + "FluentValidation.DependencyInjectionExtensions": "11.11.0", + "MediatR": "12.4.1", + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "runtime": { + "Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Infrastructure/1.0.0": { + "dependencies": { + "Application": "1.0.0", + "CsvHelper": "33.0.1", + "Domain": "1.0.0", + "MailKit": "4.8.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.0", + "Microsoft.AspNetCore.Identity.UI": "9.0.0", + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.EntityFrameworkCore.SqlServer": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "MimeKit": "4.8.0", + "Serilog": "4.1.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Settings.Configuration": "8.0.4", + "Serilog.Sinks.File": "6.0.0" + }, + "runtime": { + "Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ASPNET/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "path": "automapper/13.0.1", + "hashPath": "automapper.13.0.1.nupkg.sha512" + }, + "Azure.Core/1.38.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "path": "azure.core/1.38.0", + "hashPath": "azure.core.1.38.0.nupkg.sha512" + }, + "Azure.Identity/1.11.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "path": "azure.identity/1.11.4", + "hashPath": "azure.identity.1.11.4.nupkg.sha512" + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "path": "bouncycastle.cryptography/2.4.0", + "hashPath": "bouncycastle.cryptography.2.4.0.nupkg.sha512" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "FluentValidation/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==", + "path": "fluentvalidation/11.11.0", + "hashPath": "fluentvalidation.11.11.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-viTKWaMbL3yJYgGI0DiCeavNbE9UPMWFVK2XS9nYXGbm3NDMd0/L5ER4wBzmTtW3BYh3SrlSXm9RACiKZ6stlA==", + "path": "fluentvalidation.dependencyinjectionextensions/11.11.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.11.0.nupkg.sha512" + }, + "MailKit/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "path": "mailkit/4.8.0", + "hashPath": "mailkit.4.8.0.nupkg.sha512" + }, + "MediatR/12.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0tLxCgEC5+r1OCuumR3sWyiVa+BMv3AgiU4+pz8xqTc+2q1WbUEXFOr7Orm96oZ9r9FsldgUtWvB2o7b9jDOaw==", + "path": "mediatr/12.4.1", + "hashPath": "mediatr.12.4.1.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1dzTEl+2+RqT4vWcqEpWasPXHd58wC93U7QMlmPSmx+qixyVxCQjZ183wr7Wa68b4pF7wC501MU9rdA0ZNhMg==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9X4cx2IHNpYb9ka984BjDpJnKkindW17Z2kR/RI5pbTcbVUVMJjiAKnBhAqH24KtAEf1AU64LD60byzCn0/n8w==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fwQkBQGaiRKDQWBc7PXxDiDXtsUsRPL88Jp0CqjqoDhd9p5uHSyuv6g3ALq2EbCvKcWk/7pOKsJiDomPvp/ptA==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.UI/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VCOH8nyG/zU9BXoL77GncmKL3szxWX0oasYVZP3pvWYRxqr9aHnWBu14JBa2SbbvhCA7vsSWfs0byeAwaiV4DA==", + "path": "microsoft.aspnetcore.identity.ui/9.0.0", + "hashPath": "microsoft.aspnetcore.identity.ui.9.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", + "path": "microsoft.data.sqlclient/5.1.6", + "hashPath": "microsoft.data.sqlclient.5.1.6.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "path": "microsoft.entityframeworkcore/9.0.0", + "hashPath": "microsoft.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j+msw6fWgAE9M3Q/5B9Uhv7pdAdAQUvFPJAiBJmoy+OXvehVbfbCE8ftMAa51Uo2ZeiqVnHShhnv4Y4UJJmUzA==", + "path": "microsoft.entityframeworkcore.relational/9.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Y7/3kgz6C5kRFeELLZ5VeIeBlxB31x/ywscbN4r1JqTXIy8WWGo0CqzuOxBy4UzaTzpifElAZvv4fyD3ZQK5w==", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "path": "microsoft.extensions.caching.memory/9.0.0", + "hashPath": "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Ev1goLIvggLF6uCs6oZvdr9JM+2b1Zj+4FLdBWNW5iw3tm2BymVIb0yMsjnQTBWL7YUmqVWH3u45hSqOfvuqg==", + "path": "microsoft.extensions.fileproviders.embedded/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.embedded.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+cQjUs8PIheIMALzrf/e4gW6A/yOK8XYBxeEmAfLvVIaV9lsBGvVT0zjEZ1KPQDJ9nUeQ9uAw077J7LPUwv8wA==", + "path": "microsoft.extensions.identity.core/9.0.0", + "hashPath": "microsoft.extensions.identity.core.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XG3opf0KgWoYAUdLRhrIvI46W+/E45Ov8rzgwr0omrq5u06MCrsuMm0nPmd+pIWjMXRxbBk1uL47zGyW1lI5Hw==", + "path": "microsoft.extensions.identity.stores/9.0.0", + "hashPath": "microsoft.extensions.identity.stores.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "path": "microsoft.identity.client/4.61.3", + "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtlIWcyX01olfdevPKZdIPfBEvbcioDyBiE/Z2lHsopsMD7twcKtlN9kMevHmI5IIPhFpfwCIiR6qHQz1WHUIw==", + "path": "microsoft.identitymodel.abstractions/8.0.1", + "hashPath": "microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6++gF9x0rQApQzOBbSyp4jUaAlwm+DroKfL8gdOHxs83k8SJfUXhuc46rDB3rNXBQ1MVRxqKUrqFhO/M0E97g==", + "path": "microsoft.identitymodel.jsonwebtokens/8.0.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UCPF2exZqBXe7v/6sGNiM6zCQOUXXQ9+v5VTb9gPB8ZSUPnX53BxlN78v2jsbIvK9Dq4GovQxo23x8JgWvm/Qg==", + "path": "microsoft.identitymodel.logging/8.0.1", + "hashPath": "microsoft.identitymodel.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kDimB6Dkd3nkW2oZPDkMkVHfQt3IDqO5gL0oa8WVy3OP4uE8Ij+8TXnqg9TOd9ufjsY3IDiGz7pCUbnfL18tjg==", + "path": "microsoft.identitymodel.tokens/8.0.1", + "hashPath": "microsoft.identitymodel.tokens.8.0.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aBvunmrdu/x+4CaA/UP1Jx4xWGwk4kymhoIRnn2Vp+zi5/KOPQJ9EkSXHRUr01WcGKtYl3Au7XfkPJbU1G2sjQ==", + "path": "microsoft.openapi/1.6.22", + "hashPath": "microsoft.openapi.1.6.22.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MimeKit/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "path": "mimekit/4.8.0", + "hashPath": "mimekit.4.8.0.nupkg.sha512" + }, + "Serilog/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u1aZI8HZ62LWlq5dZLFwm6jMax/sUwnWZSw5lkPsCt518cJBxFKoNmc7oSxe5aA5BgSkzy9rzwFGR/i/acnSPw==", + "path": "serilog/4.1.0", + "hashPath": "serilog.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "path": "serilog.extensions.logging/8.0.0", + "hashPath": "serilog.extensions.logging.8.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/8.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pkxvq0umBKK8IKFJc1aV5S/HGRG/NIxJ6FV42KaTPLfDmBOAbBUB1m5gqqlGxzEa1MgDDWtQlWJdHTSxVWNx+Q==", + "path": "serilog.settings.configuration/8.0.4", + "hashPath": "serilog.settings.configuration.8.0.4.nupkg.sha512" + }, + "Serilog.Sinks.File/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lxjg89Y8gJMmFxVkbZ+qDgjl+T4yC5F7WSLTvA+5q0R04tfKVLRL/EHpYoJ/MEQd2EeCKDuylBIVnAYMotmh2A==", + "path": "serilog.sinks.file/6.0.0", + "hashPath": "serilog.sinks.file.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PpKwEZNCciDPczWPnuqaTVuN5jR/fG2RubQYgKHVWY2KB+TpvKkOrQJoF51S1yMJxygaofCM3BXlLy4PK/o8WA==", + "path": "swashbuckle.aspnetcore/7.1.0", + "hashPath": "swashbuckle.aspnetcore.7.1.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vzt/nV82YVCJt7GIuRV9xe67dvzrVwqDgO8DiQPmUZwtvtjK4rrb+qnoXbcu90VVaz2xjEK/Ma5/3AVWifSHQ==", + "path": "swashbuckle.aspnetcore.swagger/7.1.0", + "hashPath": "swashbuckle.aspnetcore.swagger.7.1.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nd1O1rVTpeX3U2fr+4FMjTD1BqnGBZcX5t0EkhVBdQWz/anf/68xTpJpAjZ9DS9CVDVKAm7qI6eJmq9psqFpVQ==", + "path": "swashbuckle.aspnetcore.swaggergen/7.1.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.7.1.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Tn9+gbG2wGekFDcm1+XQXPZoSZWOHn3DiEGaEw3/SMCtKdhkYiejoKpmTzZueKOBQf0Lzgvxs6Lss0WObN0RPA==", + "path": "swashbuckle.aspnetcore.swaggerui/7.1.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.7.1.0.nupkg.sha512" + }, + "System.ClientModel/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "path": "system.clientmodel/1.0.0", + "hashPath": "system.clientmodel.1.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VRDjgfqV0hCma5HBQa46nZTRuqfYMWZClwxUtvLJVTCeDp9Esdvr91AfEWP98IMO8ooSv1yXb6/oCc6jApoXvQ==", + "path": "system.formats.asn1/9.0.0", + "hashPath": "system.formats.asn1.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", + "path": "system.identitymodel.tokens.jwt/8.0.1", + "hashPath": "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "path": "system.security.cryptography.pkcs/8.0.0", + "hashPath": "system.security.cryptography.pkcs.8.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.dll b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.dll new file mode 100644 index 0000000..ba88ea5 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.exe b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.exe new file mode 100644 index 0000000..3abf14d Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.exe differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.pdb b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.pdb new file mode 100644 index 0000000..ee412c8 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.pdb differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.runtimeconfig.json b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.endpoints.json b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.endpoints.json new file mode 100644 index 0000000..d8b2949 --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.endpoints.json @@ -0,0 +1,612571 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [ + { + "Route": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gGJexxwXcHHc3T6SFZYlb8NOv51lSIMvByyyhFHvw1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gGJexxwXcHHc3T6SFZYlb8NOv51lSIMvByyyhFHvw1g=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001312335958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jSua8sQdhk70EWhdwxkAXbHnZO0AWu8lc6BuspQsp6Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gGJexxwXcHHc3T6SFZYlb8NOv51lSIMvByyyhFHvw1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gGJexxwXcHHc3T6SFZYlb8NOv51lSIMvByyyhFHvw1g=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jSua8sQdhk70EWhdwxkAXbHnZO0AWu8lc6BuspQsp6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jSua8sQdhk70EWhdwxkAXbHnZO0AWu8lc6BuspQsp6Q=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2680" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O7xOV2p59ofQGt88NIOCzmSQKGrJWLq0VMMyYgN6mGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O7xOV2p59ofQGt88NIOCzmSQKGrJWLq0VMMyYgN6mGs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001243781095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "803" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F6lKyKGDJ3pF6nL+q2zXiw4ukt2T26l3qXui7H/jqz0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O7xOV2p59ofQGt88NIOCzmSQKGrJWLq0VMMyYgN6mGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O7xOV2p59ofQGt88NIOCzmSQKGrJWLq0VMMyYgN6mGs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "803" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F6lKyKGDJ3pF6nL+q2zXiw4ukt2T26l3qXui7H/jqz0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F6lKyKGDJ3pF6nL+q2zXiw4ukt2T26l3qXui7H/jqz0=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2700" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h8on+kQGapdmbEGxiKBWxrdr4S9d9BvrGPkjLrzamko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h8on+kQGapdmbEGxiKBWxrdr4S9d9BvrGPkjLrzamko=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001251564456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "798" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vsx+H6NbwEYfpt8SEHRuYWxyXvJt/xPA5hefYvJJsGI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h8on+kQGapdmbEGxiKBWxrdr4S9d9BvrGPkjLrzamko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h8on+kQGapdmbEGxiKBWxrdr4S9d9BvrGPkjLrzamko=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "798" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vsx+H6NbwEYfpt8SEHRuYWxyXvJt/xPA5hefYvJJsGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vsx+H6NbwEYfpt8SEHRuYWxyXvJt/xPA5hefYvJJsGI=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Login.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Login.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2980" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wjR32FiesnFi6rvizGQi4s7qfDDW7H/5ZO+LlmvwnNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wjR32FiesnFi6rvizGQi4s7qfDDW7H/5ZO+LlmvwnNs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Login.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Login.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001169590643" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVcGYsxBICbTAWyYdCvADVliTi/70hOenibFkpfMFSg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wjR32FiesnFi6rvizGQi4s7qfDDW7H/5ZO+LlmvwnNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wjR32FiesnFi6rvizGQi4s7qfDDW7H/5ZO+LlmvwnNs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Login.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/Login.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aVcGYsxBICbTAWyYdCvADVliTi/70hOenibFkpfMFSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aVcGYsxBICbTAWyYdCvADVliTi/70hOenibFkpfMFSg=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Logout.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Logout.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MhtqqAI7Um9szYMOWy4uyDUwEkrIxnmL3jiDuB57ITg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MhtqqAI7Um9szYMOWy4uyDUwEkrIxnmL3jiDuB57ITg=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Logout.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Logout.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001547987616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KK0s4U/uhhQIFOqyrGx3yqu+3tlek6c2dUNt8bUyov0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MhtqqAI7Um9szYMOWy4uyDUwEkrIxnmL3jiDuB57ITg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MhtqqAI7Um9szYMOWy4uyDUwEkrIxnmL3jiDuB57ITg=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Logout.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/Logout.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KK0s4U/uhhQIFOqyrGx3yqu+3tlek6c2dUNt8bUyov0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KK0s4U/uhhQIFOqyrGx3yqu+3tlek6c2dUNt8bUyov0=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Register.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Register.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zm2/Ds0qoqFXi4NrnauOYA4wKSE0VU2CIoqpmVUiom0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zm2/Ds0qoqFXi4NrnauOYA4wKSE0VU2CIoqpmVUiom0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Register.cshtml.js", + "AssetFile": "FrontEnd/Pages/Accounts/Register.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001026694045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ijt1XV+7hWv0u4PjvVpCDHEb21jrWWQEjJYqYDhZZA8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zm2/Ds0qoqFXi4NrnauOYA4wKSE0VU2CIoqpmVUiom0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zm2/Ds0qoqFXi4NrnauOYA4wKSE0VU2CIoqpmVUiom0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Accounts/Register.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Accounts/Register.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ijt1XV+7hWv0u4PjvVpCDHEb21jrWWQEjJYqYDhZZA8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ijt1XV+7hWv0u4PjvVpCDHEb21jrWWQEjJYqYDhZZA8=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "23257" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hkwQSg/PBPHRLLbD3LgjDPTQIbhUKWevm223gi1m9gA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hkwQSg/PBPHRLLbD3LgjDPTQIbhUKWevm223gi1m9gA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000270124257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3701" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PQxw7JGXHczLgXQj8JVC3XLhlM9643ehOy2wqRoiip8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hkwQSg/PBPHRLLbD3LgjDPTQIbhUKWevm223gi1m9gA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hkwQSg/PBPHRLLbD3LgjDPTQIbhUKWevm223gi1m9gA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Budgets/BudgetList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3701" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PQxw7JGXHczLgXQj8JVC3XLhlM9643ehOy2wqRoiip8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PQxw7JGXHczLgXQj8JVC3XLhlM9643ehOy2wqRoiip8=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "37951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l36GTPmALpMWkafTwkW1LQBvHGVutJHIcvb9PHYhqlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l36GTPmALpMWkafTwkW1LQBvHGVutJHIcvb9PHYhqlI=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000217817469" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fYlmg5UsUamDPKAtgEN3ADXpQiZWNSAWNNRV4HxEvxY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l36GTPmALpMWkafTwkW1LQBvHGVutJHIcvb9PHYhqlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l36GTPmALpMWkafTwkW1LQBvHGVutJHIcvb9PHYhqlI=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Campaigns/CampaignList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fYlmg5UsUamDPKAtgEN3ADXpQiZWNSAWNNRV4HxEvxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fYlmg5UsUamDPKAtgEN3ADXpQiZWNSAWNNRV4HxEvxY=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Companies/MyCompany.cshtml.js", + "AssetFile": "FrontEnd/Pages/Companies/MyCompany.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "21494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"08UuMfR0ztZpVNrsMQm+geD4gAyG1nmRdcXZQowLgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-08UuMfR0ztZpVNrsMQm+geD4gAyG1nmRdcXZQowLgg0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Companies/MyCompany.cshtml.js", + "AssetFile": "FrontEnd/Pages/Companies/MyCompany.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000284900285" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MTZV5ID25BzFC912AEyCOrSG1zQnHWZeYrK6cDdMTBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"08UuMfR0ztZpVNrsMQm+geD4gAyG1nmRdcXZQowLgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-08UuMfR0ztZpVNrsMQm+geD4gAyG1nmRdcXZQowLgg0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Companies/MyCompany.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Companies/MyCompany.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MTZV5ID25BzFC912AEyCOrSG1zQnHWZeYrK6cDdMTBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MTZV5ID25BzFC912AEyCOrSG1zQnHWZeYrK6cDdMTBk=" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12647" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f5KIY73xfBjkFPz97xFGtNxOtakEvXCT9nNC1kp0Cww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f5KIY73xfBjkFPz97xFGtNxOtakEvXCT9nNC1kp0Cww=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000410846343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cWy4qsELsRs37moJ9HVdoFlTp12J4HoS/bDyq+dMIo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f5KIY73xfBjkFPz97xFGtNxOtakEvXCT9nNC1kp0Cww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f5KIY73xfBjkFPz97xFGtNxOtakEvXCT9nNC1kp0Cww=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cWy4qsELsRs37moJ9HVdoFlTp12J4HoS/bDyq+dMIo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cWy4qsELsRs37moJ9HVdoFlTp12J4HoS/bDyq+dMIo4=" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3qVmE9tsm0hSS6HX6QIYZITQ2vmWC0JQjcLRi8HNd3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3qVmE9tsm0hSS6HX6QIYZITQ2vmWC0JQjcLRi8HNd3Y=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000287769784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ymCll1tREJW5s3WQU1b+VwreH7kHcGokRrDDfAxg2Eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3qVmE9tsm0hSS6HX6QIYZITQ2vmWC0JQjcLRi8HNd3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3qVmE9tsm0hSS6HX6QIYZITQ2vmWC0JQjcLRi8HNd3Y=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ymCll1tREJW5s3WQU1b+VwreH7kHcGokRrDDfAxg2Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ymCll1tREJW5s3WQU1b+VwreH7kHcGokRrDDfAxg2Eg=" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GoYuVpwii6uVpoFXsHNrU+GYC+Ws7vosp7Aq2z21Nwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GoYuVpwii6uVpoFXsHNrU+GYC+Ws7vosp7Aq2z21Nwc=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000412031314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gPA+EhVHYhQQbfhctmGJzdOsewjz0jrg7gQFP0/TkkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GoYuVpwii6uVpoFXsHNrU+GYC+Ws7vosp7Aq2z21Nwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GoYuVpwii6uVpoFXsHNrU+GYC+Ws7vosp7Aq2z21Nwc=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gPA+EhVHYhQQbfhctmGJzdOsewjz0jrg7gQFP0/TkkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gPA+EhVHYhQQbfhctmGJzdOsewjz0jrg7gQFP0/TkkM=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Customers/CustomerList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Customers/CustomerList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "47518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uvKBvpKpJM+KN9/ZJC1b/b+VLL/7JtdV17C0cAd+o7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uvKBvpKpJM+KN9/ZJC1b/b+VLL/7JtdV17C0cAd+o7k=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Customers/CustomerList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Customers/CustomerList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000179888469" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8toZPWBIp36liXXcVUQsrOa0ugEJznhYzDsVDQbu9wQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uvKBvpKpJM+KN9/ZJC1b/b+VLL/7JtdV17C0cAd+o7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uvKBvpKpJM+KN9/ZJC1b/b+VLL/7JtdV17C0cAd+o7k=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Customers/CustomerList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Customers/CustomerList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8toZPWBIp36liXXcVUQsrOa0ugEJznhYzDsVDQbu9wQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8toZPWBIp36liXXcVUQsrOa0ugEJznhYzDsVDQbu9wQ=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js", + "AssetFile": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24817" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r9nTeeuZvvQf3ddMvEOo7WrIvOjq0lYbVyqF0zFCJLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r9nTeeuZvvQf3ddMvEOo7WrIvOjq0lYbVyqF0zFCJLs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js", + "AssetFile": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000298864316" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4q/JBlmFW3lMi3hFFwnFXykc4VPJTpZHZiXBLG035o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r9nTeeuZvvQf3ddMvEOo7WrIvOjq0lYbVyqF0zFCJLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r9nTeeuZvvQf3ddMvEOo7WrIvOjq0lYbVyqF0zFCJLs=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4q/JBlmFW3lMi3hFFwnFXykc4VPJTpZHZiXBLG035o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m4q/JBlmFW3lMi3hFFwnFXykc4VPJTpZHZiXBLG035o=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Data/manage.cshtml.js", + "AssetFile": "FrontEnd/Pages/Data/manage.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AcDpJIzj0QzcjLMTsOuWMACc6bNI2kaV02ABM7nknc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 19:18:59 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AcDpJIzj0QzcjLMTsOuWMACc6bNI2kaV02ABM7nknc8=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Data/manage.cshtml.js", + "AssetFile": "FrontEnd/Pages/Data/manage.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000747384155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MB/75aAbppZ1GMZfFm7rTKGlqdoZe55eiyI5deygMjo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AcDpJIzj0QzcjLMTsOuWMACc6bNI2kaV02ABM7nknc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 19:18:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AcDpJIzj0QzcjLMTsOuWMACc6bNI2kaV02ABM7nknc8=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Data/manage.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Data/manage.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MB/75aAbppZ1GMZfFm7rTKGlqdoZe55eiyI5deygMjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 19:18:59 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MB/75aAbppZ1GMZfFm7rTKGlqdoZe55eiyI5deygMjo=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N1WwP95Dhu+doPhDsl4zIIj61jadSoa9v0bqaEwf5Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 23 Mar 2025 21:54:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1WwP95Dhu+doPhDsl4zIIj61jadSoa9v0bqaEwf5Y0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000249252243" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4011" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJoIY57NvCQXsXw2Z8S7OL2pvhoed/JimrN5py3XSZs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N1WwP95Dhu+doPhDsl4zIIj61jadSoa9v0bqaEwf5Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 23 Mar 2025 21:54:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1WwP95Dhu+doPhDsl4zIIj61jadSoa9v0bqaEwf5Y0=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Expenses/ExpenseList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4011" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJoIY57NvCQXsXw2Z8S7OL2pvhoed/JimrN5py3XSZs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sun, 23 Mar 2025 21:54:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PJoIY57NvCQXsXw2Z8S7OL2pvhoed/JimrN5py3XSZs=" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js", + "AssetFile": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ml3Ondom+PjFWVALFHgaVFwvdkIpZpLsjF1yWwvaeFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ml3Ondom+PjFWVALFHgaVFwvdkIpZpLsjF1yWwvaeFU=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js", + "AssetFile": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000280347631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXKkFN2UrE7nohaguwr90S1AyeeWyxneOy7IEf25UI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ml3Ondom+PjFWVALFHgaVFwvdkIpZpLsjF1yWwvaeFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ml3Ondom+PjFWVALFHgaVFwvdkIpZpLsjF1yWwvaeFU=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXKkFN2UrE7nohaguwr90S1AyeeWyxneOy7IEf25UI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7zXKkFN2UrE7nohaguwr90S1AyeeWyxneOy7IEf25UI=" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JrfQRu7/U87j+BY8QglJ0Exj3SeuAplka+jiR93+xpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JrfQRu7/U87j+BY8QglJ0Exj3SeuAplka+jiR93+xpg=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000219442616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9s62CKiBe5sdqjUDIkPDxk18Tg2BCexTwE9NHnsuJs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JrfQRu7/U87j+BY8QglJ0Exj3SeuAplka+jiR93+xpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JrfQRu7/U87j+BY8QglJ0Exj3SeuAplka+jiR93+xpg=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9s62CKiBe5sdqjUDIkPDxk18Tg2BCexTwE9NHnsuJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/9s62CKiBe5sdqjUDIkPDxk18Tg2BCexTwE9NHnsuJs=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Leads/LeadList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Leads/LeadList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "73715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4iDcV5fB55dHRepRwCNQBoLsDZlzY0Rtt+vgX0aeaAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4iDcV5fB55dHRepRwCNQBoLsDZlzY0Rtt+vgX0aeaAk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Leads/LeadList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Leads/LeadList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000130582397" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7657" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e3Xd1JiMJMRflo1gBdHUEsqETfiOlnsq5958HpyDveM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4iDcV5fB55dHRepRwCNQBoLsDZlzY0Rtt+vgX0aeaAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4iDcV5fB55dHRepRwCNQBoLsDZlzY0Rtt+vgX0aeaAk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Leads/LeadList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Leads/LeadList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7657" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e3Xd1JiMJMRflo1gBdHUEsqETfiOlnsq5958HpyDveM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e3Xd1JiMJMRflo1gBdHUEsqETfiOlnsq5958HpyDveM=" + } + ] + }, + { + "Route": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js", + "AssetFile": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AgGD+07mpvz53crm3HYuEmocl/62+9CXTP6+Le4698k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AgGD+07mpvz53crm3HYuEmocl/62+9CXTP6+Le4698k=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js", + "AssetFile": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000772200772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1294" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uydyvcgITZxDapxnmEcD+08W+sqJR5N+OCoviDW9i04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AgGD+07mpvz53crm3HYuEmocl/62+9CXTP6+Le4698k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AgGD+07mpvz53crm3HYuEmocl/62+9CXTP6+Le4698k=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1294" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uydyvcgITZxDapxnmEcD+08W+sqJR5N+OCoviDW9i04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uydyvcgITZxDapxnmEcD+08W+sqJR5N+OCoviDW9i04=" + } + ] + }, + { + "Route": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13968" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tpf86iRagR/J+DdZ9JonClokgQgdL39EDf3zK1GU0Bk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tpf86iRagR/J+DdZ9JonClokgQgdL39EDf3zK1GU0Bk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000387897595" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2577" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0uwqRTo8/6GVcaMNr4HercUZtnzOKBT22NaIo7Miuzc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tpf86iRagR/J+DdZ9JonClokgQgdL39EDf3zK1GU0Bk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tpf86iRagR/J+DdZ9JonClokgQgdL39EDf3zK1GU0Bk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2577" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0uwqRTo8/6GVcaMNr4HercUZtnzOKBT22NaIo7Miuzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0uwqRTo8/6GVcaMNr4HercUZtnzOKBT22NaIo7Miuzc=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Products/ProductList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Products/ProductList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "23717" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FnSOXV1r3O+RObD3UPvJ7MFe1/I+hrIudjK+3Huezwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FnSOXV1r3O+RObD3UPvJ7MFe1/I+hrIudjK+3Huezwk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Products/ProductList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Products/ProductList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000272331155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MEMaCfjItjU4h7WV2JYhoS/ADfc6GuVp7l5cPmJTZXA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FnSOXV1r3O+RObD3UPvJ7MFe1/I+hrIudjK+3Huezwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FnSOXV1r3O+RObD3UPvJ7MFe1/I+hrIudjK+3Huezwk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Products/ProductList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Products/ProductList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MEMaCfjItjU4h7WV2JYhoS/ADfc6GuVp7l5cPmJTZXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MEMaCfjItjU4h7WV2JYhoS/ADfc6GuVp7l5cPmJTZXA=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js", + "AssetFile": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19702" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b0cUjeTs2XYn8C1lqZC/abkJBPMcWFjWr5E6EZ6Aj5A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b0cUjeTs2XYn8C1lqZC/abkJBPMcWFjWr5E6EZ6Aj5A=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js", + "AssetFile": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324569945" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zffcrBLk794QXxDCEzNsVMQtzLiTt4saQfkUj9BlIm4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b0cUjeTs2XYn8C1lqZC/abkJBPMcWFjWr5E6EZ6Aj5A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b0cUjeTs2XYn8C1lqZC/abkJBPMcWFjWr5E6EZ6Aj5A=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Profiles/MyProfile.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zffcrBLk794QXxDCEzNsVMQtzLiTt4saQfkUj9BlIm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zffcrBLk794QXxDCEzNsVMQtzLiTt4saQfkUj9BlIm4=" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "46951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ACSAmpKLpi57tzF8c4T3y91We31yDsTUEOf4DscK92Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ACSAmpKLpi57tzF8c4T3y91We31yDsTUEOf4DscK92Y=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000174641984" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5725" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UPp3snLNflJ/d+FnNxVi6p2+3r5A1FTceiC0b/rvYuM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ACSAmpKLpi57tzF8c4T3y91We31yDsTUEOf4DscK92Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ACSAmpKLpi57tzF8c4T3y91We31yDsTUEOf4DscK92Y=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5725" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UPp3snLNflJ/d+FnNxVi6p2+3r5A1FTceiC0b/rvYuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UPp3snLNflJ/d+FnNxVi6p2+3r5A1FTceiC0b/rvYuM=" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5257" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DRCIXEz/jwuWRqQo72FSKE/V3+1JCyCz/dJO8IBsojQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DRCIXEz/jwuWRqQo72FSKE/V3+1JCyCz/dJO8IBsojQ=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000741839763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkhqGzrFvKcjJEm60/w+YGw2VwKTTnbWYSgGY5PGzd8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DRCIXEz/jwuWRqQo72FSKE/V3+1JCyCz/dJO8IBsojQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DRCIXEz/jwuWRqQo72FSKE/V3+1JCyCz/dJO8IBsojQ=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkhqGzrFvKcjJEm60/w+YGw2VwKTTnbWYSgGY5PGzd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vkhqGzrFvKcjJEm60/w+YGw2VwKTTnbWYSgGY5PGzd8=" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lb+lqiVBIWD53doyQlbFEpb5HhMrKW1vrS/THPPz7gk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lb+lqiVBIWD53doyQlbFEpb5HhMrKW1vrS/THPPz7gk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js", + "AssetFile": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000705218618" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E6gp5ZKnkMcBDLV5I+YUA/e0OLQyJ8PaXkUZ7wn5jdw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lb+lqiVBIWD53doyQlbFEpb5HhMrKW1vrS/THPPz7gk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lb+lqiVBIWD53doyQlbFEpb5HhMrKW1vrS/THPPz7gk=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E6gp5ZKnkMcBDLV5I+YUA/e0OLQyJ8PaXkUZ7wn5jdw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E6gp5ZKnkMcBDLV5I+YUA/e0OLQyJ8PaXkUZ7wn5jdw=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Roles/RoleList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Roles/RoleList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3932" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ibUXrJYM1uZEbatX90qPt/JSZoRtqMUrd1Z75nM9qag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ibUXrJYM1uZEbatX90qPt/JSZoRtqMUrd1Z75nM9qag=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Roles/RoleList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Roles/RoleList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000894454383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwBlXn8J1yCO7cAbs9jRlxx1OdlzgHzJoio1izTPxl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ibUXrJYM1uZEbatX90qPt/JSZoRtqMUrd1Z75nM9qag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ibUXrJYM1uZEbatX90qPt/JSZoRtqMUrd1Z75nM9qag=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Roles/RoleList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Roles/RoleList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwBlXn8J1yCO7cAbs9jRlxx1OdlzgHzJoio1izTPxl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pwBlXn8J1yCO7cAbs9jRlxx1OdlzgHzJoio1izTPxl8=" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "46878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5O/P3eukA5XpznZEglihx8XR3NV2dTt4xQ6pkEnSm/E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5O/P3eukA5XpznZEglihx8XR3NV2dTt4xQ6pkEnSm/E=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000174764069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qt8WSWKMx7FVi8NAv6CIL1kyYnfGrDc4X9Tg7gd+i3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5O/P3eukA5XpznZEglihx8XR3NV2dTt4xQ6pkEnSm/E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5O/P3eukA5XpznZEglihx8XR3NV2dTt4xQ6pkEnSm/E=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qt8WSWKMx7FVi8NAv6CIL1kyYnfGrDc4X9Tg7gd+i3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qt8WSWKMx7FVi8NAv6CIL1kyYnfGrDc4X9Tg7gd+i3o=" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5258" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UzKgbGJ4jiXpKQwLtpt5F+4nFnz99xC8zXUEB8oVU3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UzKgbGJ4jiXpKQwLtpt5F+4nFnz99xC8zXUEB8oVU3o=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000744601638" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JJ0gFpl7c00lghFZyPDdf6boSB7fkggYFi1pNfR3Ag0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UzKgbGJ4jiXpKQwLtpt5F+4nFnz99xC8zXUEB8oVU3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UzKgbGJ4jiXpKQwLtpt5F+4nFnz99xC8zXUEB8oVU3o=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JJ0gFpl7c00lghFZyPDdf6boSB7fkggYFi1pNfR3Ag0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JJ0gFpl7c00lghFZyPDdf6boSB7fkggYFi1pNfR3Ag0=" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5520" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+/of39sD75i1cV1luZlqAPHMzgRRXXOq+TGxuzQkFEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+/of39sD75i1cV1luZlqAPHMzgRRXXOq+TGxuzQkFEo=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000706713781" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BQQsjKxbVP+8KLvdbD7FEtb4WPfBU0cNF8kTPkT0PmM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+/of39sD75i1cV1luZlqAPHMzgRRXXOq+TGxuzQkFEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+/of39sD75i1cV1luZlqAPHMzgRRXXOq+TGxuzQkFEo=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BQQsjKxbVP+8KLvdbD7FEtb4WPfBU0cNF8kTPkT0PmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BQQsjKxbVP+8KLvdbD7FEtb4WPfBU0cNF8kTPkT0PmM=" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24034" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"auYGliJ9hO742bV1RUDUFYFo+/LN4qD11O0lXQuwzk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-auYGliJ9hO742bV1RUDUFYFo+/LN4qD11O0lXQuwzk4=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000279251606" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"juNazOe/wyRPG4YUx1TzVXeaLKFYkfaoqZfiZ9m/TcQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"auYGliJ9hO742bV1RUDUFYFo+/LN4qD11O0lXQuwzk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-auYGliJ9hO742bV1RUDUFYFo+/LN4qD11O0lXQuwzk4=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"juNazOe/wyRPG4YUx1TzVXeaLKFYkfaoqZfiZ9m/TcQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-juNazOe/wyRPG4YUx1TzVXeaLKFYkfaoqZfiZ9m/TcQ=" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12910" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/dh8IYxb8r7GItH+hvpHZ4JF6v2BhSwqs2ncbJCfZlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/dh8IYxb8r7GItH+hvpHZ4JF6v2BhSwqs2ncbJCfZlE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js", + "AssetFile": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000401929260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2487" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WqIOp8T6gv2kNheKk4VO7QRvKELMecJp29o8lbFv2Qo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/dh8IYxb8r7GItH+hvpHZ4JF6v2BhSwqs2ncbJCfZlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/dh8IYxb8r7GItH+hvpHZ4JF6v2BhSwqs2ncbJCfZlE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2487" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WqIOp8T6gv2kNheKk4VO7QRvKELMecJp29o8lbFv2Qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WqIOp8T6gv2kNheKk4VO7QRvKELMecJp29o8lbFv2Qo=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Taxs/TaxList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Taxs/TaxList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"APF1MtQKohECoPIlK540g4iGRDA31cEu3z4KjPIBmBE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-APF1MtQKohECoPIlK540g4iGRDA31cEu3z4KjPIBmBE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Taxs/TaxList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Taxs/TaxList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000375939850" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ucXrj0NkinxnviPlOoOFfYND1XNpJVhpffQ49HQX0o8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"APF1MtQKohECoPIlK540g4iGRDA31cEu3z4KjPIBmBE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-APF1MtQKohECoPIlK540g4iGRDA31cEu3z4KjPIBmBE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Taxs/TaxList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Taxs/TaxList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ucXrj0NkinxnviPlOoOFfYND1XNpJVhpffQ49HQX0o8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ucXrj0NkinxnviPlOoOFfYND1XNpJVhpffQ49HQX0o8=" + } + ] + }, + { + "Route": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js", + "AssetFile": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16588" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcocbNfvLcqZnhsz4JCKi3ExVENM9HCL7ytcoHjlTuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IcocbNfvLcqZnhsz4JCKi3ExVENM9HCL7ytcoHjlTuU=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js", + "AssetFile": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000340831629" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FFq+X97/BfNoKOF9kdBL9wpCQxP723pvpoNz8kvr9JQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IcocbNfvLcqZnhsz4JCKi3ExVENM9HCL7ytcoHjlTuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IcocbNfvLcqZnhsz4JCKi3ExVENM9HCL7ytcoHjlTuU=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FFq+X97/BfNoKOF9kdBL9wpCQxP723pvpoNz8kvr9JQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FFq+X97/BfNoKOF9kdBL9wpCQxP723pvpoNz8kvr9JQ=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Todos/TodoList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Todos/TodoList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"drVuuUI1656C4AgyqKjmPKG999AjCKj0BIgOKiV5Htw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drVuuUI1656C4AgyqKjmPKG999AjCKj0BIgOKiV5Htw=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Todos/TodoList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Todos/TodoList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411184211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vPRqFuPxgxqYakyO1rmGoyFkCGPW8X5iRQgpehOVahs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"drVuuUI1656C4AgyqKjmPKG999AjCKj0BIgOKiV5Htw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drVuuUI1656C4AgyqKjmPKG999AjCKj0BIgOKiV5Htw=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Todos/TodoList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Todos/TodoList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vPRqFuPxgxqYakyO1rmGoyFkCGPW8X5iRQgpehOVahs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vPRqFuPxgxqYakyO1rmGoyFkCGPW8X5iRQgpehOVahs=" + } + ] + }, + { + "Route": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js", + "AssetFile": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13955" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WwD6VTDYV+9HrIOLmPEbOfm71/toEuBX+CDnqjBWLGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WwD6VTDYV+9HrIOLmPEbOfm71/toEuBX+CDnqjBWLGE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js", + "AssetFile": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000387747189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Wvu8yGme9MTQW/Ur5hxy15hgt8BtVOwRLBysYKHCBlY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WwD6VTDYV+9HrIOLmPEbOfm71/toEuBX+CDnqjBWLGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WwD6VTDYV+9HrIOLmPEbOfm71/toEuBX+CDnqjBWLGE=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Wvu8yGme9MTQW/Ur5hxy15hgt8BtVOwRLBysYKHCBlY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wvu8yGme9MTQW/Ur5hxy15hgt8BtVOwRLBysYKHCBlY=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Users/UserList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Users/UserList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "33865" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dlXFOw1oxrxwapUKMJBjfF5SVL0U3kZSVkrlLeWQgRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dlXFOw1oxrxwapUKMJBjfF5SVL0U3kZSVkrlLeWQgRA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Users/UserList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Users/UserList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000226808800" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMYZq//FLP/rRPJZtV60c9ebRr3p4sXNARDFB88syYQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dlXFOw1oxrxwapUKMJBjfF5SVL0U3kZSVkrlLeWQgRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dlXFOw1oxrxwapUKMJBjfF5SVL0U3kZSVkrlLeWQgRA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Users/UserList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Users/UserList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMYZq//FLP/rRPJZtV60c9ebRr3p4sXNARDFB88syYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rMYZq//FLP/rRPJZtV60c9ebRr3p4sXNARDFB88syYQ=" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ge31A3Eokss3Wj8codOPeNBIFZieh2YxcgqQeKoDP9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ge31A3Eokss3Wj8codOPeNBIFZieh2YxcgqQeKoDP9g=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000410509031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CWEx4lzKPjPwztNNqOeNI/jHgeecIHcJsh1LIxHC/rg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ge31A3Eokss3Wj8codOPeNBIFZieh2YxcgqQeKoDP9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ge31A3Eokss3Wj8codOPeNBIFZieh2YxcgqQeKoDP9g=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CWEx4lzKPjPwztNNqOeNI/jHgeecIHcJsh1LIxHC/rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CWEx4lzKPjPwztNNqOeNI/jHgeecIHcJsh1LIxHC/rg=" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22545" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y4xPDzqI9jSXJMBhlVw/MIAtAYmqtVMgss0Z+ySLp84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y4xPDzqI9jSXJMBhlVw/MIAtAYmqtVMgss0Z+ySLp84=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000288018433" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XeFHE16nfZP9JpKZs1V/9lKGEK3IuPxUiWBO+4O/uCk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y4xPDzqI9jSXJMBhlVw/MIAtAYmqtVMgss0Z+ySLp84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y4xPDzqI9jSXJMBhlVw/MIAtAYmqtVMgss0Z+ySLp84=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XeFHE16nfZP9JpKZs1V/9lKGEK3IuPxUiWBO+4O/uCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XeFHE16nfZP9JpKZs1V/9lKGEK3IuPxUiWBO+4O/uCk=" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W1/bQeibQe4plIAJ59BjuG/lkk/AAz6Oz4Wz6m0pb4A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W1/bQeibQe4plIAJ59BjuG/lkk/AAz6Oz4Wz6m0pb4A=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js", + "AssetFile": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411015208" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2432" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"247Ek8FNbpETdA10Fl1r6dg7KVjjKAjdmbOrk+pqnrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W1/bQeibQe4plIAJ59BjuG/lkk/AAz6Oz4Wz6m0pb4A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W1/bQeibQe4plIAJ59BjuG/lkk/AAz6Oz4Wz6m0pb4A=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2432" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"247Ek8FNbpETdA10Fl1r6dg7KVjjKAjdmbOrk+pqnrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-247Ek8FNbpETdA10Fl1r6dg7KVjjKAjdmbOrk+pqnrk=" + } + ] + }, + { + "Route": "FrontEnd/Pages/Vendors/VendorList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Vendors/VendorList.cshtml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "47223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+/PBkfLoyJfs3NH3WuXLZgHG8gB4Jfn7uAc4bJsAzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+/PBkfLoyJfs3NH3WuXLZgHG8gB4Jfn7uAc4bJsAzAA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Vendors/VendorList.cshtml.js", + "AssetFile": "FrontEnd/Pages/Vendors/VendorList.cshtml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000180701120" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bvqAQVZSfyOUVYg7iPhIX3AfP+BqGrfk/C9yinmiDXU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+/PBkfLoyJfs3NH3WuXLZgHG8gB4Jfn7uAc4bJsAzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+/PBkfLoyJfs3NH3WuXLZgHG8gB4Jfn7uAc4bJsAzAA=" + }, + { + "Name": "script-type", + "Value": "module" + } + ] + }, + { + "Route": "FrontEnd/Pages/Vendors/VendorList.cshtml.js.gz", + "AssetFile": "FrontEnd/Pages/Vendors/VendorList.cshtml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bvqAQVZSfyOUVYg7iPhIX3AfP+BqGrfk/C9yinmiDXU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bvqAQVZSfyOUVYg7iPhIX3AfP+BqGrfk/C9yinmiDXU=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css", + "AssetFile": "adminlte/css/adminlte.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007811096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "128022" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css", + "AssetFile": "adminlte/css/adminlte.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1597496" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.apeiq82xqi.map", + "AssetFile": "adminlte/css/adminlte.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003145248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "317939" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apeiq82xqi" + }, + { + "Name": "integrity", + "Value": "sha256-7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css.map" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.apeiq82xqi.map", + "AssetFile": "adminlte/css/adminlte.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2355822" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apeiq82xqi" + }, + { + "Name": "integrity", + "Value": "sha256-7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css.map" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.apeiq82xqi.map.gz", + "AssetFile": "adminlte/css/adminlte.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "317939" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apeiq82xqi" + }, + { + "Name": "integrity", + "Value": "sha256-+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.gz", + "AssetFile": "adminlte/css/adminlte.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "128022" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.map", + "AssetFile": "adminlte/css/adminlte.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003145248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "317939" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.map", + "AssetFile": "adminlte/css/adminlte.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2355822" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7vQi0e5gEydOHWkp8wwebCMCV6ZR2bcphyrWFb5juQ0=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.css.map.gz", + "AssetFile": "adminlte/css/adminlte.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "317939" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+Rvp5esN+3TOeMogJzQj8RsFafXuRr8toh/trb3TesQ=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.m18sojhagi.css", + "AssetFile": "adminlte/css/adminlte.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007811096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "128022" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m18sojhagi" + }, + { + "Name": "integrity", + "Value": "sha256-RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css" + } + ] + }, + { + "Route": "adminlte/css/adminlte.m18sojhagi.css", + "AssetFile": "adminlte/css/adminlte.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1597496" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m18sojhagi" + }, + { + "Name": "integrity", + "Value": "sha256-RhREXjs6OYfqreBjQ26t8r72Wjy35V43/PAdgMVcNMU=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css" + } + ] + }, + { + "Route": "adminlte/css/adminlte.m18sojhagi.css.gz", + "AssetFile": "adminlte/css/adminlte.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "128022" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m18sojhagi" + }, + { + "Name": "integrity", + "Value": "sha256-BFawH+gEl61/A8JkLDJ5GB8gRAC+9jf1VcSfOLLfEy0=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.css.gz" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css", + "AssetFile": "adminlte/css/adminlte.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008265692" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "120981" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css", + "AssetFile": "adminlte/css/adminlte.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1382986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.gz", + "AssetFile": "adminlte/css/adminlte.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "120981" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.map", + "AssetFile": "adminlte/css/adminlte.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002609134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "383268" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.map", + "AssetFile": "adminlte/css/adminlte.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3783134" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.map.gz", + "AssetFile": "adminlte/css/adminlte.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "383268" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.x4s5v08xg0.map", + "AssetFile": "adminlte/css/adminlte.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002609134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "383268" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4s5v08xg0" + }, + { + "Name": "integrity", + "Value": "sha256-T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.x4s5v08xg0.map", + "AssetFile": "adminlte/css/adminlte.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3783134" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4s5v08xg0" + }, + { + "Name": "integrity", + "Value": "sha256-T6PiptRRX4rmQ8gaVvBje1D1XatGOlPhu5YOpyF5ek4=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.css.x4s5v08xg0.map.gz", + "AssetFile": "adminlte/css/adminlte.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "383268" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4s5v08xg0" + }, + { + "Name": "integrity", + "Value": "sha256-rC3zXQMZU8llO76FYa2bnG1HZYdm27bQdrB8Kr8MsW4=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.jht1g3njih.css", + "AssetFile": "adminlte/css/adminlte.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008265692" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "120981" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jht1g3njih" + }, + { + "Name": "integrity", + "Value": "sha256-h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.jht1g3njih.css", + "AssetFile": "adminlte/css/adminlte.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1382986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jht1g3njih" + }, + { + "Name": "integrity", + "Value": "sha256-h3eq9dULGfUX0DNJ+CrIY0+sjS1O9xpxX+rWpDQ17iU=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css" + } + ] + }, + { + "Route": "adminlte/css/adminlte.min.jht1g3njih.css.gz", + "AssetFile": "adminlte/css/adminlte.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "120981" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jht1g3njih" + }, + { + "Name": "integrity", + "Value": "sha256-2BSl1GmWrddRlMF5szuv6u+ZH+vUT5n3ZUDBy2KfytE=" + }, + { + "Name": "label", + "Value": "adminlte/css/adminlte.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css", + "AssetFile": "adminlte/css/alt/adminlte.components.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034913763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css", + "AssetFile": "adminlte/css/alt/adminlte.components.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "400176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.map", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013661762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "73196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.map", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "590460" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "73196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.qfys9kxu5t.map", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013661762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "73196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfys9kxu5t" + }, + { + "Name": "integrity", + "Value": "sha256-VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.qfys9kxu5t.map", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "590460" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfys9kxu5t" + }, + { + "Name": "integrity", + "Value": "sha256-VqZVK9ZFBoY8nzzh7j8PEcEYbyxj6p9dJ+awNHk+l5o=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.css.qfys9kxu5t.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "73196" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfys9kxu5t" + }, + { + "Name": "integrity", + "Value": "sha256-BUEQttgEncMG19cG2fOSi0jtzBmNbQXvLcZY9MHxVmE=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000036097174" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "353566" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.jly7ewalzr.map", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012212547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "81882" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jly7ewalzr" + }, + { + "Name": "integrity", + "Value": "sha256-59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.jly7ewalzr.map", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "937244" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jly7ewalzr" + }, + { + "Name": "integrity", + "Value": "sha256-59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.jly7ewalzr.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "81882" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jly7ewalzr" + }, + { + "Name": "integrity", + "Value": "sha256-bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012212547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "81882" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "937244" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-59hhp3O1qAwLeLecnGEgRW6wtYpNR1RI5oMYcdrGuv4=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "81882" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bpU+JJmzyidWfZ5wOXqqDbMGhB3WXoQXbVZ/EbJbx8Q=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.o1dlgwxsu9.css", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000036097174" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1dlgwxsu9" + }, + { + "Name": "integrity", + "Value": "sha256-tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.o1dlgwxsu9.css", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "353566" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1dlgwxsu9" + }, + { + "Name": "integrity", + "Value": "sha256-tCrwnc0aVHabx8ladmqMIrxanOb8k4/sBSO5KrBYvhQ=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.min.o1dlgwxsu9.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1dlgwxsu9" + }, + { + "Name": "integrity", + "Value": "sha256-IP0lsxm54XlD+5K7L/NXGUkleYMdNZTOePPRXPUsNjI=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.t2g91q58sv.css", + "AssetFile": "adminlte/css/alt/adminlte.components.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034913763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2g91q58sv" + }, + { + "Name": "integrity", + "Value": "sha256-pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.t2g91q58sv.css", + "AssetFile": "adminlte/css/alt/adminlte.components.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "400176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2g91q58sv" + }, + { + "Name": "integrity", + "Value": "sha256-pVKqPU/qGbZ7SR+rm6fW01ndIHUUDINglA5gA3MTgnQ=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.components.t2g91q58sv.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.components.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2g91q58sv" + }, + { + "Name": "integrity", + "Value": "sha256-bxqCDXz6WSnW3KFG4TxNwOGwFdJZmJURdvUm0BtfD+Q=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.components.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.8be2bkbw3l.css", + "AssetFile": "adminlte/css/alt/adminlte.core.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013786828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "72532" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8be2bkbw3l" + }, + { + "Name": "integrity", + "Value": "sha256-9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.8be2bkbw3l.css", + "AssetFile": "adminlte/css/alt/adminlte.core.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "834010" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8be2bkbw3l" + }, + { + "Name": "integrity", + "Value": "sha256-9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.8be2bkbw3l.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "72532" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8be2bkbw3l" + }, + { + "Name": "integrity", + "Value": "sha256-OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css", + "AssetFile": "adminlte/css/alt/adminlte.core.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013786828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "72532" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css", + "AssetFile": "adminlte/css/alt/adminlte.core.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "834010" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9B8VN/SXi6xkYyLbL+jfk+l+iG7w2dLuG9eX11NN7dw=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "72532" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OygxBTUe7gY1hmAZJU0pJc53arA4QFPXlRZDtvmQyUg=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.map", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000004981122" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.map", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1319136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.zi735c1a3o.map", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000004981122" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zi735c1a3o" + }, + { + "Name": "integrity", + "Value": "sha256-261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.zi735c1a3o.map", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1319136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zi735c1a3o" + }, + { + "Name": "integrity", + "Value": "sha256-261iEXfLP1Y4TY9737Ml+wrO3EWU0hvA5n66nEFpTik=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.css.zi735c1a3o.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200757" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zi735c1a3o" + }, + { + "Name": "integrity", + "Value": "sha256-ozewjDJkFQ2s8kPnWx5Znq7BbMvfFxg/zsk/JYKeueo=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014769085" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "707489" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.666hqp8ynl.map", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000004349169" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "229928" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "666hqp8ynl" + }, + { + "Name": "integrity", + "Value": "sha256-gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.666hqp8ynl.map", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2002623" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "666hqp8ynl" + }, + { + "Name": "integrity", + "Value": "sha256-gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.666hqp8ynl.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "229928" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "666hqp8ynl" + }, + { + "Name": "integrity", + "Value": "sha256-UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000004349169" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "229928" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2002623" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gmhX+GnECm/hEZT2YXE730HotP/B1ngR69/cyO8A2A8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "229928" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UL9z1D9lPIh/uOWjuWwzxvqm2h4OxG9b20oUPGnD1Jg=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.xapuyrsvoc.css", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014769085" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xapuyrsvoc" + }, + { + "Name": "integrity", + "Value": "sha256-mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.xapuyrsvoc.css", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "707489" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xapuyrsvoc" + }, + { + "Name": "integrity", + "Value": "sha256-mQlUmXefkMlhwEzyE2iyepTqohySaMhSVt63kFQCKb0=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.core.min.xapuyrsvoc.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.core.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xapuyrsvoc" + }, + { + "Name": "integrity", + "Value": "sha256-IuCTcdk2VJCuWI1QGeHcJZUP2EUSnkFokk65Y/ZKlmg=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.core.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000210703751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "42404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037245335" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "136216" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.mjc83mai68.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037245335" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mjc83mai68" + }, + { + "Name": "integrity", + "Value": "sha256-fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.mjc83mai68.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "136216" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mjc83mai68" + }, + { + "Name": "integrity", + "Value": "sha256-fvN1bpvzpWyYYfsHbbECYgmAPK6GyKpnO+tmka5Kl+g=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.css.mjc83mai68.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26848" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mjc83mai68" + }, + { + "Name": "integrity", + "Value": "sha256-mainLFfk89dBfE9D6nokStMIhMjU3D9Mhyxf4eh9Ktc=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.lk54s89tzl.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000210703751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lk54s89tzl" + }, + { + "Name": "integrity", + "Value": "sha256-NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.lk54s89tzl.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "42404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lk54s89tzl" + }, + { + "Name": "integrity", + "Value": "sha256-NYGh+nEqhx4FDd9CR9WTI9E9scaf4N8h8OormdJl9r0=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.lk54s89tzl.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lk54s89tzl" + }, + { + "Name": "integrity", + "Value": "sha256-jV+Xg4IIT90JE+/9sNh57jiQNLjiGraGLz7XFSQb6iE=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000221043324" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4523" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34535" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4523" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069156293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14459" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89230" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14459" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.sxksbgs8mn.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069156293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14459" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxksbgs8mn" + }, + { + "Name": "integrity", + "Value": "sha256-AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.sxksbgs8mn.map", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89230" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxksbgs8mn" + }, + { + "Name": "integrity", + "Value": "sha256-AESisGcH70wTsjmnJ1UoRMjv9XNG+8aTylY1hhE4euw=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.css.sxksbgs8mn.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14459" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxksbgs8mn" + }, + { + "Name": "integrity", + "Value": "sha256-PxD4tbUpGF1eSlzH/eLX/87awScw05QpNS4Nxp5dCsI=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.z8ogwuvt9p.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000221043324" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4523" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8ogwuvt9p" + }, + { + "Name": "integrity", + "Value": "sha256-PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.z8ogwuvt9p.css", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34535" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8ogwuvt9p" + }, + { + "Name": "integrity", + "Value": "sha256-PZlD9EZnPLPrMVG0i32p+nAQRmrD5FxO3d1imMd+gzU=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.extra-components.min.z8ogwuvt9p.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.extra-components.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4523" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8ogwuvt9p" + }, + { + "Name": "integrity", + "Value": "sha256-Od4GfsNM0KQm+836Tahg+RQ8hetT8L+gWifiq99RRuo=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.extra-components.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308546745" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3240" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "21063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.d5hmib0pbr.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044277175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22584" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d5hmib0pbr" + }, + { + "Name": "integrity", + "Value": "sha256-r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.d5hmib0pbr.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "102397" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d5hmib0pbr" + }, + { + "Name": "integrity", + "Value": "sha256-r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.d5hmib0pbr.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22584" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d5hmib0pbr" + }, + { + "Name": "integrity", + "Value": "sha256-YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3240" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044277175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22584" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "102397" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r2HSMVn2iWOYZxRGgVlIesuc+VkU0bvuhi4IFfyQb4Q=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22584" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YdgoWSmwhXvitApuLTFs0AkL4MIK8/p1hmsjcTiiADg=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.izhfi01wvq.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308546745" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3240" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "izhfi01wvq" + }, + { + "Name": "integrity", + "Value": "sha256-zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.izhfi01wvq.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "izhfi01wvq" + }, + { + "Name": "integrity", + "Value": "sha256-zmpGp2DLODcTM+oS5I0ibnEktrtXCgdZ50YudlmjjX8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.izhfi01wvq.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3240" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "izhfi01wvq" + }, + { + "Name": "integrity", + "Value": "sha256-4lGtBV8ntEHMdKfzLt4rLg/SX6zAMhkaVUnqtecnZIc=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000327225131" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083563132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11966" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "59754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11966" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.ofxdqbhs25.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083563132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11966" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofxdqbhs25" + }, + { + "Name": "integrity", + "Value": "sha256-fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.ofxdqbhs25.map", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "59754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofxdqbhs25" + }, + { + "Name": "integrity", + "Value": "sha256-fJ9hb2CJwcfK3nU4poAkovJQta1FlTisS0zDZDDsrXI=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.css.ofxdqbhs25.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11966" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofxdqbhs25" + }, + { + "Name": "integrity", + "Value": "sha256-/fdv4hJ0Yc2vVJSv5qYNIoOhmmcNbybbdkZl+KPpg1k=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.oite168kkq.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000327225131" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oite168kkq" + }, + { + "Name": "integrity", + "Value": "sha256-EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.oite168kkq.css", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oite168kkq" + }, + { + "Name": "integrity", + "Value": "sha256-EHr6LQ0+0XWaIBuN/KJ9nIrMLF4GcWukVFADwZAQHwc=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.pages.min.oite168kkq.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.pages.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oite168kkq" + }, + { + "Name": "integrity", + "Value": "sha256-lAKsUepkUyhipSCJyP8Fq4QiEUxB+SRSEExG9X945VU=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.pages.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044130627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "325000" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.a8iltv48sy.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000016459551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "60754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a8iltv48sy" + }, + { + "Name": "integrity", + "Value": "sha256-iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.a8iltv48sy.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "483754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a8iltv48sy" + }, + { + "Name": "integrity", + "Value": "sha256-iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.a8iltv48sy.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "60754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a8iltv48sy" + }, + { + "Name": "integrity", + "Value": "sha256-Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000016459551" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "60754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "483754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iqjShFvaPk95zlQsMxB+WzDfQuPwOGO3vxW7U/J430I=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "60754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lcgfnot9/AKIv61C0nMTv0wMjusmU71K5HY7fjbSz5c=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045802226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "289457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023255814" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "42999" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "432156" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "42999" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.maq0dmubh2.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023255814" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "42999" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maq0dmubh2" + }, + { + "Name": "integrity", + "Value": "sha256-4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.maq0dmubh2.map", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "432156" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maq0dmubh2" + }, + { + "Name": "integrity", + "Value": "sha256-4pVOm+NVOf7yuBxB/T+mYKz4yp5Mddx5B42or/dNGEA=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css.map" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.css.maq0dmubh2.map.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "42999" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maq0dmubh2" + }, + { + "Name": "integrity", + "Value": "sha256-PtG+R90M4fdgvn4zY9fmYWQgJjTLuPagU7WRVLAotcg=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.otekwowxsg.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045802226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otekwowxsg" + }, + { + "Name": "integrity", + "Value": "sha256-9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.otekwowxsg.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "289457" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otekwowxsg" + }, + { + "Name": "integrity", + "Value": "sha256-9Ld5zUr+7ReUWJIQo2r9xQBs3CFom+5hxftZSlJy3BA=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.min.otekwowxsg.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otekwowxsg" + }, + { + "Name": "integrity", + "Value": "sha256-8bs8yEbaH5izY2vmG49Sp79xO3lBWyWGWf0zFBekHR0=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.min.css.gz" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.qddkoqtli1.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044130627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qddkoqtli1" + }, + { + "Name": "integrity", + "Value": "sha256-Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.qddkoqtli1.css", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "325000" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qddkoqtli1" + }, + { + "Name": "integrity", + "Value": "sha256-Qq+PeK7BUvGwbbsyiml8wocTXZK9PDveQQ1aqKKeRW8=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css" + } + ] + }, + { + "Route": "adminlte/css/alt/adminlte.plugins.qddkoqtli1.css.gz", + "AssetFile": "adminlte/css/alt/adminlte.plugins.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qddkoqtli1" + }, + { + "Name": "integrity", + "Value": "sha256-vOHb3LQ2DaHwN3OnEqaTebhllMNBosDFXqPC1skTANU=" + }, + { + "Name": "label", + "Value": "adminlte/css/alt/adminlte.plugins.css.gz" + } + ] + }, + { + "Route": "adminlte/img/AdminLTELogo.5xpa8ektv0.png", + "AssetFile": "adminlte/img/AdminLTELogo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2637" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"uSHDQ4Rtli0E2sYzmikeN1+J4tJuifs97R966DD21FY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5xpa8ektv0" + }, + { + "Name": "integrity", + "Value": "sha256-uSHDQ4Rtli0E2sYzmikeN1+J4tJuifs97R966DD21FY=" + }, + { + "Name": "label", + "Value": "adminlte/img/AdminLTELogo.png" + } + ] + }, + { + "Route": "adminlte/img/AdminLTELogo.png", + "AssetFile": "adminlte/img/AdminLTELogo.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2637" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"uSHDQ4Rtli0E2sYzmikeN1+J4tJuifs97R966DD21FY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uSHDQ4Rtli0E2sYzmikeN1+J4tJuifs97R966DD21FY=" + } + ] + }, + { + "Route": "adminlte/img/avatar.cq7ak03cs5.png", + "AssetFile": "adminlte/img/avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8118" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"XPZ/Bgr/uZzuAVZtRbzeUw7cER7HN48zpznhlLyQ8Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq7ak03cs5" + }, + { + "Name": "integrity", + "Value": "sha256-XPZ/Bgr/uZzuAVZtRbzeUw7cER7HN48zpznhlLyQ8Lc=" + }, + { + "Name": "label", + "Value": "adminlte/img/avatar.png" + } + ] + }, + { + "Route": "adminlte/img/avatar.png", + "AssetFile": "adminlte/img/avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8118" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"XPZ/Bgr/uZzuAVZtRbzeUw7cER7HN48zpznhlLyQ8Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XPZ/Bgr/uZzuAVZtRbzeUw7cER7HN48zpznhlLyQ8Lc=" + } + ] + }, + { + "Route": "adminlte/img/avatar2.clb441sfpl.png", + "AssetFile": "adminlte/img/avatar2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8265" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"UESTa30dGQ2aSP2QShc7/WdLRngTduWsLlF+mnLA1OY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "clb441sfpl" + }, + { + "Name": "integrity", + "Value": "sha256-UESTa30dGQ2aSP2QShc7/WdLRngTduWsLlF+mnLA1OY=" + }, + { + "Name": "label", + "Value": "adminlte/img/avatar2.png" + } + ] + }, + { + "Route": "adminlte/img/avatar2.png", + "AssetFile": "adminlte/img/avatar2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8265" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"UESTa30dGQ2aSP2QShc7/WdLRngTduWsLlF+mnLA1OY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UESTa30dGQ2aSP2QShc7/WdLRngTduWsLlF+mnLA1OY=" + } + ] + }, + { + "Route": "adminlte/img/avatar3.png", + "AssetFile": "adminlte/img/avatar3.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9246" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"HTKg4qMjIb25ewRFeWpZwDCXyBymFgL+bnH7K4UEBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HTKg4qMjIb25ewRFeWpZwDCXyBymFgL+bnH7K4UEBxE=" + } + ] + }, + { + "Route": "adminlte/img/avatar3.zgk1oe2q67.png", + "AssetFile": "adminlte/img/avatar3.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9246" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"HTKg4qMjIb25ewRFeWpZwDCXyBymFgL+bnH7K4UEBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zgk1oe2q67" + }, + { + "Name": "integrity", + "Value": "sha256-HTKg4qMjIb25ewRFeWpZwDCXyBymFgL+bnH7K4UEBxE=" + }, + { + "Name": "label", + "Value": "adminlte/img/avatar3.png" + } + ] + }, + { + "Route": "adminlte/img/avatar4.png", + "AssetFile": "adminlte/img/avatar4.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "13543" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4dB/0b9Ebx2PgeXGqAHgVfwc4cYWq3YSa3V3y/vwvIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4dB/0b9Ebx2PgeXGqAHgVfwc4cYWq3YSa3V3y/vwvIo=" + } + ] + }, + { + "Route": "adminlte/img/avatar4.vs5rlt9a4x.png", + "AssetFile": "adminlte/img/avatar4.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13543" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4dB/0b9Ebx2PgeXGqAHgVfwc4cYWq3YSa3V3y/vwvIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs5rlt9a4x" + }, + { + "Name": "integrity", + "Value": "sha256-4dB/0b9Ebx2PgeXGqAHgVfwc4cYWq3YSa3V3y/vwvIo=" + }, + { + "Name": "label", + "Value": "adminlte/img/avatar4.png" + } + ] + }, + { + "Route": "adminlte/img/avatar5.png", + "AssetFile": "adminlte/img/avatar5.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7587" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"Lvg/MF6RGg11xhstUx2ibijfeN3dqId8SbGxuLuZh9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lvg/MF6RGg11xhstUx2ibijfeN3dqId8SbGxuLuZh9k=" + } + ] + }, + { + "Route": "adminlte/img/avatar5.q1fgw26yku.png", + "AssetFile": "adminlte/img/avatar5.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7587" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"Lvg/MF6RGg11xhstUx2ibijfeN3dqId8SbGxuLuZh9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q1fgw26yku" + }, + { + "Name": "integrity", + "Value": "sha256-Lvg/MF6RGg11xhstUx2ibijfeN3dqId8SbGxuLuZh9k=" + }, + { + "Name": "label", + "Value": "adminlte/img/avatar5.png" + } + ] + }, + { + "Route": "adminlte/img/boxed-bg.h242czgvr1.png", + "AssetFile": "adminlte/img/boxed-bg.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "43676" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"GTmjjVI7NMR5tjhSlsv88Zax+lPCLRYSN+4mToZk6Ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h242czgvr1" + }, + { + "Name": "integrity", + "Value": "sha256-GTmjjVI7NMR5tjhSlsv88Zax+lPCLRYSN+4mToZk6Ek=" + }, + { + "Name": "label", + "Value": "adminlte/img/boxed-bg.png" + } + ] + }, + { + "Route": "adminlte/img/boxed-bg.jpg", + "AssetFile": "adminlte/img/boxed-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "123766" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"kNhHsVQs9BcVlP4ZTmHhJfwAZOttsgmDBftCLiXHLm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kNhHsVQs9BcVlP4ZTmHhJfwAZOttsgmDBftCLiXHLm4=" + } + ] + }, + { + "Route": "adminlte/img/boxed-bg.png", + "AssetFile": "adminlte/img/boxed-bg.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "43676" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"GTmjjVI7NMR5tjhSlsv88Zax+lPCLRYSN+4mToZk6Ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GTmjjVI7NMR5tjhSlsv88Zax+lPCLRYSN+4mToZk6Ek=" + } + ] + }, + { + "Route": "adminlte/img/boxed-bg.sdebnp4g0a.jpg", + "AssetFile": "adminlte/img/boxed-bg.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "123766" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"kNhHsVQs9BcVlP4ZTmHhJfwAZOttsgmDBftCLiXHLm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sdebnp4g0a" + }, + { + "Name": "integrity", + "Value": "sha256-kNhHsVQs9BcVlP4ZTmHhJfwAZOttsgmDBftCLiXHLm4=" + }, + { + "Name": "label", + "Value": "adminlte/img/boxed-bg.jpg" + } + ] + }, + { + "Route": "adminlte/img/credit/american-express.35gyy4y31i.png", + "AssetFile": "adminlte/img/credit/american-express.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2162" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"N1ieAbXenkcXbw2JGZpL9ad/AuO9+jWAxv28akFJXx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35gyy4y31i" + }, + { + "Name": "integrity", + "Value": "sha256-N1ieAbXenkcXbw2JGZpL9ad/AuO9+jWAxv28akFJXx0=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/american-express.png" + } + ] + }, + { + "Route": "adminlte/img/credit/american-express.png", + "AssetFile": "adminlte/img/credit/american-express.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2162" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"N1ieAbXenkcXbw2JGZpL9ad/AuO9+jWAxv28akFJXx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1ieAbXenkcXbw2JGZpL9ad/AuO9+jWAxv28akFJXx0=" + } + ] + }, + { + "Route": "adminlte/img/credit/cirrus.haanhu4llm.png", + "AssetFile": "adminlte/img/credit/cirrus.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1577" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"2fx3B+2oYOsMzxHM6jxSjD0FKmqsyuyL5x2gTYj7+MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "haanhu4llm" + }, + { + "Name": "integrity", + "Value": "sha256-2fx3B+2oYOsMzxHM6jxSjD0FKmqsyuyL5x2gTYj7+MQ=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/cirrus.png" + } + ] + }, + { + "Route": "adminlte/img/credit/cirrus.png", + "AssetFile": "adminlte/img/credit/cirrus.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1577" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"2fx3B+2oYOsMzxHM6jxSjD0FKmqsyuyL5x2gTYj7+MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2fx3B+2oYOsMzxHM6jxSjD0FKmqsyuyL5x2gTYj7+MQ=" + } + ] + }, + { + "Route": "adminlte/img/credit/mastercard.png", + "AssetFile": "adminlte/img/credit/mastercard.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"h4QnFk7MLfBhwkSRxN5JqPVp4EDiRQ/2Z4TfqPagbqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h4QnFk7MLfBhwkSRxN5JqPVp4EDiRQ/2Z4TfqPagbqs=" + } + ] + }, + { + "Route": "adminlte/img/credit/mastercard.zxkyuexsld.png", + "AssetFile": "adminlte/img/credit/mastercard.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"h4QnFk7MLfBhwkSRxN5JqPVp4EDiRQ/2Z4TfqPagbqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zxkyuexsld" + }, + { + "Name": "integrity", + "Value": "sha256-h4QnFk7MLfBhwkSRxN5JqPVp4EDiRQ/2Z4TfqPagbqs=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/mastercard.png" + } + ] + }, + { + "Route": "adminlte/img/credit/paypal.png", + "AssetFile": "adminlte/img/credit/paypal.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1976" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"bplZ5crWRlcs0K8aYA1hqpnjqWMBNdmHntfD9wOGbhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bplZ5crWRlcs0K8aYA1hqpnjqWMBNdmHntfD9wOGbhw=" + } + ] + }, + { + "Route": "adminlte/img/credit/paypal.yzy90cp1s8.png", + "AssetFile": "adminlte/img/credit/paypal.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1976" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"bplZ5crWRlcs0K8aYA1hqpnjqWMBNdmHntfD9wOGbhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yzy90cp1s8" + }, + { + "Name": "integrity", + "Value": "sha256-bplZ5crWRlcs0K8aYA1hqpnjqWMBNdmHntfD9wOGbhw=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/paypal.png" + } + ] + }, + { + "Route": "adminlte/img/credit/paypal2.png", + "AssetFile": "adminlte/img/credit/paypal2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1219" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"RRY3cciwt3S6zwKxHEHeAgnKPRQpgxxclC4G/PWny/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRY3cciwt3S6zwKxHEHeAgnKPRQpgxxclC4G/PWny/A=" + } + ] + }, + { + "Route": "adminlte/img/credit/paypal2.r4dtqurbzx.png", + "AssetFile": "adminlte/img/credit/paypal2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1219" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"RRY3cciwt3S6zwKxHEHeAgnKPRQpgxxclC4G/PWny/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4dtqurbzx" + }, + { + "Name": "integrity", + "Value": "sha256-RRY3cciwt3S6zwKxHEHeAgnKPRQpgxxclC4G/PWny/A=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/paypal2.png" + } + ] + }, + { + "Route": "adminlte/img/credit/visa.png", + "AssetFile": "adminlte/img/credit/visa.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"7BjeKQfcxdoSGGNl3Jj+0r3Ibjhx/esXvKx7iEVqXfA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7BjeKQfcxdoSGGNl3Jj+0r3Ibjhx/esXvKx7iEVqXfA=" + } + ] + }, + { + "Route": "adminlte/img/credit/visa.s83m7m62mp.png", + "AssetFile": "adminlte/img/credit/visa.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"7BjeKQfcxdoSGGNl3Jj+0r3Ibjhx/esXvKx7iEVqXfA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s83m7m62mp" + }, + { + "Name": "integrity", + "Value": "sha256-7BjeKQfcxdoSGGNl3Jj+0r3Ibjhx/esXvKx7iEVqXfA=" + }, + { + "Name": "label", + "Value": "adminlte/img/credit/visa.png" + } + ] + }, + { + "Route": "adminlte/img/default-150x150.nv54hbhaf2.png", + "AssetFile": "adminlte/img/default-150x150.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"w0MxDWnj/zJAhVEF3cTbMXPDdmAVsX+Q23GL7kIrqFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nv54hbhaf2" + }, + { + "Name": "integrity", + "Value": "sha256-w0MxDWnj/zJAhVEF3cTbMXPDdmAVsX+Q23GL7kIrqFA=" + }, + { + "Name": "label", + "Value": "adminlte/img/default-150x150.png" + } + ] + }, + { + "Route": "adminlte/img/default-150x150.png", + "AssetFile": "adminlte/img/default-150x150.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"w0MxDWnj/zJAhVEF3cTbMXPDdmAVsX+Q23GL7kIrqFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w0MxDWnj/zJAhVEF3cTbMXPDdmAVsX+Q23GL7kIrqFA=" + } + ] + }, + { + "Route": "adminlte/img/icons.pgzyby3kf3.png", + "AssetFile": "adminlte/img/icons.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"CcvB4CLA1p9XJa00XfUGa8V0z99c2bEtggmbrXeCzvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pgzyby3kf3" + }, + { + "Name": "integrity", + "Value": "sha256-CcvB4CLA1p9XJa00XfUGa8V0z99c2bEtggmbrXeCzvE=" + }, + { + "Name": "label", + "Value": "adminlte/img/icons.png" + } + ] + }, + { + "Route": "adminlte/img/icons.png", + "AssetFile": "adminlte/img/icons.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"CcvB4CLA1p9XJa00XfUGa8V0z99c2bEtggmbrXeCzvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CcvB4CLA1p9XJa00XfUGa8V0z99c2bEtggmbrXeCzvE=" + } + ] + }, + { + "Route": "adminlte/img/photo1.k1cuuvx4v0.png", + "AssetFile": "adminlte/img/photo1.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "662169" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"iJ22CihQHznIU6RUkGuw47WRyVqT0rEMhfwWf2nfecI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k1cuuvx4v0" + }, + { + "Name": "integrity", + "Value": "sha256-iJ22CihQHznIU6RUkGuw47WRyVqT0rEMhfwWf2nfecI=" + }, + { + "Name": "label", + "Value": "adminlte/img/photo1.png" + } + ] + }, + { + "Route": "adminlte/img/photo1.png", + "AssetFile": "adminlte/img/photo1.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "662169" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"iJ22CihQHznIU6RUkGuw47WRyVqT0rEMhfwWf2nfecI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iJ22CihQHznIU6RUkGuw47WRyVqT0rEMhfwWf2nfecI=" + } + ] + }, + { + "Route": "adminlte/img/photo2.png", + "AssetFile": "adminlte/img/photo2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "422537" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"BjwzdzSU4UeqVr8HYiS0KXBggxGrwDqT4ttfYPT1+VQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BjwzdzSU4UeqVr8HYiS0KXBggxGrwDqT4ttfYPT1+VQ=" + } + ] + }, + { + "Route": "adminlte/img/photo2.qsbhi7q87u.png", + "AssetFile": "adminlte/img/photo2.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "422537" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"BjwzdzSU4UeqVr8HYiS0KXBggxGrwDqT4ttfYPT1+VQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qsbhi7q87u" + }, + { + "Name": "integrity", + "Value": "sha256-BjwzdzSU4UeqVr8HYiS0KXBggxGrwDqT4ttfYPT1+VQ=" + }, + { + "Name": "label", + "Value": "adminlte/img/photo2.png" + } + ] + }, + { + "Route": "adminlte/img/photo3.1h2rg7q4y6.jpg", + "AssetFile": "adminlte/img/photo3.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "370563" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"RXECvIpNSKRyrWTijGB+54ct705TrXxDg2H1V3Q/45k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1h2rg7q4y6" + }, + { + "Name": "integrity", + "Value": "sha256-RXECvIpNSKRyrWTijGB+54ct705TrXxDg2H1V3Q/45k=" + }, + { + "Name": "label", + "Value": "adminlte/img/photo3.jpg" + } + ] + }, + { + "Route": "adminlte/img/photo3.jpg", + "AssetFile": "adminlte/img/photo3.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "370563" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"RXECvIpNSKRyrWTijGB+54ct705TrXxDg2H1V3Q/45k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXECvIpNSKRyrWTijGB+54ct705TrXxDg2H1V3Q/45k=" + } + ] + }, + { + "Route": "adminlte/img/photo4.jpg", + "AssetFile": "adminlte/img/photo4.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1145510" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"HraES5jGF5BsOX0Gkviv9TmxUyue2QguhPelsXRvvd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HraES5jGF5BsOX0Gkviv9TmxUyue2QguhPelsXRvvd4=" + } + ] + }, + { + "Route": "adminlte/img/photo4.u4jlup4h4y.jpg", + "AssetFile": "adminlte/img/photo4.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1145510" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"HraES5jGF5BsOX0Gkviv9TmxUyue2QguhPelsXRvvd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u4jlup4h4y" + }, + { + "Name": "integrity", + "Value": "sha256-HraES5jGF5BsOX0Gkviv9TmxUyue2QguhPelsXRvvd4=" + }, + { + "Name": "label", + "Value": "adminlte/img/photo4.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-1.jpg", + "AssetFile": "adminlte/img/prod-1.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "45269" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"BCxhjwxcgr5G7EbNQtB3aGm0BpebsJmKys8IX0Cj+ws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BCxhjwxcgr5G7EbNQtB3aGm0BpebsJmKys8IX0Cj+ws=" + } + ] + }, + { + "Route": "adminlte/img/prod-1.wlf8jewtsx.jpg", + "AssetFile": "adminlte/img/prod-1.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "45269" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"BCxhjwxcgr5G7EbNQtB3aGm0BpebsJmKys8IX0Cj+ws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wlf8jewtsx" + }, + { + "Name": "integrity", + "Value": "sha256-BCxhjwxcgr5G7EbNQtB3aGm0BpebsJmKys8IX0Cj+ws=" + }, + { + "Name": "label", + "Value": "adminlte/img/prod-1.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-2.jpg", + "AssetFile": "adminlte/img/prod-2.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32224" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"E0t+Z+A0sTepUGFbbq+CBwuyClkEy9TMnoX6n3+FZwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E0t+Z+A0sTepUGFbbq+CBwuyClkEy9TMnoX6n3+FZwM=" + } + ] + }, + { + "Route": "adminlte/img/prod-2.xbsmo926fa.jpg", + "AssetFile": "adminlte/img/prod-2.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32224" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"E0t+Z+A0sTepUGFbbq+CBwuyClkEy9TMnoX6n3+FZwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xbsmo926fa" + }, + { + "Name": "integrity", + "Value": "sha256-E0t+Z+A0sTepUGFbbq+CBwuyClkEy9TMnoX6n3+FZwM=" + }, + { + "Name": "label", + "Value": "adminlte/img/prod-2.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-3.29xc1xt4i8.jpg", + "AssetFile": "adminlte/img/prod-3.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21025" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"qjceUgGRlT//eui4UwLaBMIjILZrmeh3r8zSGMFT2as=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29xc1xt4i8" + }, + { + "Name": "integrity", + "Value": "sha256-qjceUgGRlT//eui4UwLaBMIjILZrmeh3r8zSGMFT2as=" + }, + { + "Name": "label", + "Value": "adminlte/img/prod-3.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-3.jpg", + "AssetFile": "adminlte/img/prod-3.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "21025" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"qjceUgGRlT//eui4UwLaBMIjILZrmeh3r8zSGMFT2as=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qjceUgGRlT//eui4UwLaBMIjILZrmeh3r8zSGMFT2as=" + } + ] + }, + { + "Route": "adminlte/img/prod-4.22ko3qvybp.jpg", + "AssetFile": "adminlte/img/prod-4.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26459" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"dom2UAYif2uWsBjGUZNP+LlrTSjTh89M9gUBejbud7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22ko3qvybp" + }, + { + "Name": "integrity", + "Value": "sha256-dom2UAYif2uWsBjGUZNP+LlrTSjTh89M9gUBejbud7A=" + }, + { + "Name": "label", + "Value": "adminlte/img/prod-4.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-4.jpg", + "AssetFile": "adminlte/img/prod-4.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "26459" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"dom2UAYif2uWsBjGUZNP+LlrTSjTh89M9gUBejbud7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dom2UAYif2uWsBjGUZNP+LlrTSjTh89M9gUBejbud7A=" + } + ] + }, + { + "Route": "adminlte/img/prod-5.jisre6nqys.jpg", + "AssetFile": "adminlte/img/prod-5.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32090" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"5aB2LMc0Lg3qx+u4/ZSYuLwovbE2/qdkT0yf78+Yvh8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jisre6nqys" + }, + { + "Name": "integrity", + "Value": "sha256-5aB2LMc0Lg3qx+u4/ZSYuLwovbE2/qdkT0yf78+Yvh8=" + }, + { + "Name": "label", + "Value": "adminlte/img/prod-5.jpg" + } + ] + }, + { + "Route": "adminlte/img/prod-5.jpg", + "AssetFile": "adminlte/img/prod-5.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32090" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"5aB2LMc0Lg3qx+u4/ZSYuLwovbE2/qdkT0yf78+Yvh8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5aB2LMc0Lg3qx+u4/ZSYuLwovbE2/qdkT0yf78+Yvh8=" + } + ] + }, + { + "Route": "adminlte/img/user1-128x128.gjwx06c2ao.jpg", + "AssetFile": "adminlte/img/user1-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2750" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"BMX8EcmkVJ+kwJox663mHY/6LLwEAITLrC/NhNM4Mk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjwx06c2ao" + }, + { + "Name": "integrity", + "Value": "sha256-BMX8EcmkVJ+kwJox663mHY/6LLwEAITLrC/NhNM4Mk4=" + }, + { + "Name": "label", + "Value": "adminlte/img/user1-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user1-128x128.jpg", + "AssetFile": "adminlte/img/user1-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2750" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"BMX8EcmkVJ+kwJox663mHY/6LLwEAITLrC/NhNM4Mk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BMX8EcmkVJ+kwJox663mHY/6LLwEAITLrC/NhNM4Mk4=" + } + ] + }, + { + "Route": "adminlte/img/user2-160x160.jpg", + "AssetFile": "adminlte/img/user2-160x160.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6905" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"aA9sgvj6nAcK44WmfvksC7y6Z1nFpYRaclEC5+wpliI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aA9sgvj6nAcK44WmfvksC7y6Z1nFpYRaclEC5+wpliI=" + } + ] + }, + { + "Route": "adminlte/img/user2-160x160.wycn2zoxwx.jpg", + "AssetFile": "adminlte/img/user2-160x160.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6905" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"aA9sgvj6nAcK44WmfvksC7y6Z1nFpYRaclEC5+wpliI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wycn2zoxwx" + }, + { + "Name": "integrity", + "Value": "sha256-aA9sgvj6nAcK44WmfvksC7y6Z1nFpYRaclEC5+wpliI=" + }, + { + "Name": "label", + "Value": "adminlte/img/user2-160x160.jpg" + } + ] + }, + { + "Route": "adminlte/img/user3-128x128.jpg", + "AssetFile": "adminlte/img/user3-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3398" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"KBMiJYB5MVPeJuKQjNMdNTEUeKziaMfdaCkUgDykenc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KBMiJYB5MVPeJuKQjNMdNTEUeKziaMfdaCkUgDykenc=" + } + ] + }, + { + "Route": "adminlte/img/user3-128x128.okr9lll0pm.jpg", + "AssetFile": "adminlte/img/user3-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3398" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"KBMiJYB5MVPeJuKQjNMdNTEUeKziaMfdaCkUgDykenc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okr9lll0pm" + }, + { + "Name": "integrity", + "Value": "sha256-KBMiJYB5MVPeJuKQjNMdNTEUeKziaMfdaCkUgDykenc=" + }, + { + "Name": "label", + "Value": "adminlte/img/user3-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user4-128x128.e0nvstqqn7.jpg", + "AssetFile": "adminlte/img/user4-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3455" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"PtYF7KTYh94OFg+6D/YYE6iKufX0h3kJ+xli06g7uXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e0nvstqqn7" + }, + { + "Name": "integrity", + "Value": "sha256-PtYF7KTYh94OFg+6D/YYE6iKufX0h3kJ+xli06g7uXM=" + }, + { + "Name": "label", + "Value": "adminlte/img/user4-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user4-128x128.jpg", + "AssetFile": "adminlte/img/user4-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3455" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"PtYF7KTYh94OFg+6D/YYE6iKufX0h3kJ+xli06g7uXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PtYF7KTYh94OFg+6D/YYE6iKufX0h3kJ+xli06g7uXM=" + } + ] + }, + { + "Route": "adminlte/img/user5-128x128.9y8p72my7x.jpg", + "AssetFile": "adminlte/img/user5-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6415" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"kYilYs9iXC0u+9ABCVZtJmxctV057ZJZ84aGAWUIlbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9y8p72my7x" + }, + { + "Name": "integrity", + "Value": "sha256-kYilYs9iXC0u+9ABCVZtJmxctV057ZJZ84aGAWUIlbA=" + }, + { + "Name": "label", + "Value": "adminlte/img/user5-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user5-128x128.jpg", + "AssetFile": "adminlte/img/user5-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6415" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"kYilYs9iXC0u+9ABCVZtJmxctV057ZJZ84aGAWUIlbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kYilYs9iXC0u+9ABCVZtJmxctV057ZJZ84aGAWUIlbA=" + } + ] + }, + { + "Route": "adminlte/img/user6-128x128.jpg", + "AssetFile": "adminlte/img/user6-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4250" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"09nPWbDq+j+irZrQrkVcjhXY6s5pxtlVsyWM0wtNvgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09nPWbDq+j+irZrQrkVcjhXY6s5pxtlVsyWM0wtNvgc=" + } + ] + }, + { + "Route": "adminlte/img/user6-128x128.luyv40uo9o.jpg", + "AssetFile": "adminlte/img/user6-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4250" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"09nPWbDq+j+irZrQrkVcjhXY6s5pxtlVsyWM0wtNvgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "luyv40uo9o" + }, + { + "Name": "integrity", + "Value": "sha256-09nPWbDq+j+irZrQrkVcjhXY6s5pxtlVsyWM0wtNvgc=" + }, + { + "Name": "label", + "Value": "adminlte/img/user6-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user7-128x128.331q5m3pqo.jpg", + "AssetFile": "adminlte/img/user7-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"Actnbf9lSva+pFns10arAJKg46dLFxjl3G0O4A8sUjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "331q5m3pqo" + }, + { + "Name": "integrity", + "Value": "sha256-Actnbf9lSva+pFns10arAJKg46dLFxjl3G0O4A8sUjI=" + }, + { + "Name": "label", + "Value": "adminlte/img/user7-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/img/user7-128x128.jpg", + "AssetFile": "adminlte/img/user7-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"Actnbf9lSva+pFns10arAJKg46dLFxjl3G0O4A8sUjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Actnbf9lSva+pFns10arAJKg46dLFxjl3G0O4A8sUjI=" + } + ] + }, + { + "Route": "adminlte/img/user8-128x128.jpg", + "AssetFile": "adminlte/img/user8-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4983" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"LKW/qtgV+G43CJcftvSsrK2jiFlbRgvA7+dea6qKiZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LKW/qtgV+G43CJcftvSsrK2jiFlbRgvA7+dea6qKiZE=" + } + ] + }, + { + "Route": "adminlte/img/user8-128x128.ki1y5lpl0h.jpg", + "AssetFile": "adminlte/img/user8-128x128.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4983" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"LKW/qtgV+G43CJcftvSsrK2jiFlbRgvA7+dea6qKiZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ki1y5lpl0h" + }, + { + "Name": "integrity", + "Value": "sha256-LKW/qtgV+G43CJcftvSsrK2jiFlbRgvA7+dea6qKiZE=" + }, + { + "Name": "label", + "Value": "adminlte/img/user8-128x128.jpg" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.json", + "AssetFile": "adminlte/js/.eslintrc.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002525252525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "395" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.json", + "AssetFile": "adminlte/js/.eslintrc.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "990" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.json.gz", + "AssetFile": "adminlte/js/.eslintrc.json.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "395" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.reekxv40v8.json", + "AssetFile": "adminlte/js/.eslintrc.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002525252525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "395" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "reekxv40v8" + }, + { + "Name": "integrity", + "Value": "sha256-DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=" + }, + { + "Name": "label", + "Value": "adminlte/js/.eslintrc.json" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.reekxv40v8.json", + "AssetFile": "adminlte/js/.eslintrc.json", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "990" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "reekxv40v8" + }, + { + "Name": "integrity", + "Value": "sha256-DZ3+EOtIrpHtdvOHTaJTyXfaNkaul1bW6PZWS/WtDjA=" + }, + { + "Name": "label", + "Value": "adminlte/js/.eslintrc.json" + } + ] + }, + { + "Route": "adminlte/js/.eslintrc.reekxv40v8.json.gz", + "AssetFile": "adminlte/js/.eslintrc.json.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "395" + }, + { + "Name": "Content-Type", + "Value": "application/json" + }, + { + "Name": "ETag", + "Value": "\"wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "reekxv40v8" + }, + { + "Name": "integrity", + "Value": "sha256-wIoJFcFcBlmNhs3HtcBpHflx0Ml6RkkmFJfqNrhWayk=" + }, + { + "Name": "label", + "Value": "adminlte/js/.eslintrc.json.gz" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js", + "AssetFile": "adminlte/js/adminlte.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000061349693" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16299" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js", + "AssetFile": "adminlte/js/adminlte.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "102907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.gz", + "AssetFile": "adminlte/js/adminlte.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16299" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.map", + "AssetFile": "adminlte/js/adminlte.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027451411" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36427" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.map", + "AssetFile": "adminlte/js/adminlte.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "171653" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.map.gz", + "AssetFile": "adminlte/js/adminlte.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36427" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.yfvxh73iuu.map", + "AssetFile": "adminlte/js/adminlte.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027451411" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36427" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfvxh73iuu" + }, + { + "Name": "integrity", + "Value": "sha256-bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js.map" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.yfvxh73iuu.map", + "AssetFile": "adminlte/js/adminlte.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "171653" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfvxh73iuu" + }, + { + "Name": "integrity", + "Value": "sha256-bvo5pnVi44Q4d76sQDiaN8+ykFJEqR+0SvfVhJb+PKA=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js.map" + } + ] + }, + { + "Route": "adminlte/js/adminlte.js.yfvxh73iuu.map.gz", + "AssetFile": "adminlte/js/adminlte.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36427" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yfvxh73iuu" + }, + { + "Name": "integrity", + "Value": "sha256-/H0brp+9w9n9etxXfPsDWynfGkcCviWOGPD6HXPmMi4=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js.map.gz" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.duhl7u4qjv.js", + "AssetFile": "adminlte/js/adminlte.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000094993825" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duhl7u4qjv" + }, + { + "Name": "integrity", + "Value": "sha256-lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.duhl7u4qjv.js", + "AssetFile": "adminlte/js/adminlte.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "44250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duhl7u4qjv" + }, + { + "Name": "integrity", + "Value": "sha256-lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.duhl7u4qjv.js.gz", + "AssetFile": "adminlte/js/adminlte.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duhl7u4qjv" + }, + { + "Name": "integrity", + "Value": "sha256-yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js.gz" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js", + "AssetFile": "adminlte/js/adminlte.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000094993825" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js", + "AssetFile": "adminlte/js/adminlte.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "44250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lawv4O8uPgRvhH+phgyTEFm427mi+nPnHFlBp/Alkv4=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.gz", + "AssetFile": "adminlte/js/adminlte.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yyVaQddavJHf2AuJhThjQ5kUEOKjJFD81qmbZhOqtvU=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.map", + "AssetFile": "adminlte/js/adminlte.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033862721" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29530" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.map", + "AssetFile": "adminlte/js/adminlte.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "129651" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.map.gz", + "AssetFile": "adminlte/js/adminlte.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29530" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.zw7x4mjs6y.map", + "AssetFile": "adminlte/js/adminlte.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033862721" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29530" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw7x4mjs6y" + }, + { + "Name": "integrity", + "Value": "sha256-rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js.map" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.zw7x4mjs6y.map", + "AssetFile": "adminlte/js/adminlte.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "129651" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw7x4mjs6y" + }, + { + "Name": "integrity", + "Value": "sha256-rY3M8tTZ2GaXXrWYWSQqJLjN8uAl3bxSIr4uEtTBdF0=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js.map" + } + ] + }, + { + "Route": "adminlte/js/adminlte.min.js.zw7x4mjs6y.map.gz", + "AssetFile": "adminlte/js/adminlte.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29530" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw7x4mjs6y" + }, + { + "Name": "integrity", + "Value": "sha256-Xu+PjiRqaAmDtwsvkSQbwJLNGkh0w7GrN10qdwNWwqU=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/js/adminlte.vmehleoteh.js", + "AssetFile": "adminlte/js/adminlte.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000061349693" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16299" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmehleoteh" + }, + { + "Name": "integrity", + "Value": "sha256-qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js" + } + ] + }, + { + "Route": "adminlte/js/adminlte.vmehleoteh.js", + "AssetFile": "adminlte/js/adminlte.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "102907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmehleoteh" + }, + { + "Name": "integrity", + "Value": "sha256-qa5rotfA/XGUme1qKFBaN2b460qKta/sMjFgsts8yW4=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js" + } + ] + }, + { + "Route": "adminlte/js/adminlte.vmehleoteh.js.gz", + "AssetFile": "adminlte/js/adminlte.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16299" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmehleoteh" + }, + { + "Name": "integrity", + "Value": "sha256-v//OuximPYx/sZWis0CCT/59oV04EUN6X/ssVsPLiWE=" + }, + { + "Name": "label", + "Value": "adminlte/js/adminlte.js.gz" + } + ] + }, + { + "Route": "adminlte/js/demo.hegzuu81q6.js", + "AssetFile": "adminlte/js/demo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000297265161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hegzuu81q6" + }, + { + "Name": "integrity", + "Value": "sha256-yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=" + }, + { + "Name": "label", + "Value": "adminlte/js/demo.js" + } + ] + }, + { + "Route": "adminlte/js/demo.hegzuu81q6.js", + "AssetFile": "adminlte/js/demo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hegzuu81q6" + }, + { + "Name": "integrity", + "Value": "sha256-yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=" + }, + { + "Name": "label", + "Value": "adminlte/js/demo.js" + } + ] + }, + { + "Route": "adminlte/js/demo.hegzuu81q6.js.gz", + "AssetFile": "adminlte/js/demo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hegzuu81q6" + }, + { + "Name": "integrity", + "Value": "sha256-DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=" + }, + { + "Name": "label", + "Value": "adminlte/js/demo.js.gz" + } + ] + }, + { + "Route": "adminlte/js/demo.js", + "AssetFile": "adminlte/js/demo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000297265161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=" + } + ] + }, + { + "Route": "adminlte/js/demo.js", + "AssetFile": "adminlte/js/demo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yRMir5/xB1d7JXLlzqkNGP9+pSXNm073OR7WblqDKCo=" + } + ] + }, + { + "Route": "adminlte/js/demo.js.gz", + "AssetFile": "adminlte/js/demo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DaqHyy5ARH+yFQCA/D9Rzkb++dBufgHW1Xk11wF6hKA=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.6m5ktcz08b.js", + "AssetFile": "adminlte/js/pages/dashboard.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000413907285" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m5ktcz08b" + }, + { + "Name": "integrity", + "Value": "sha256-bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.6m5ktcz08b.js", + "AssetFile": "adminlte/js/pages/dashboard.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7626" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m5ktcz08b" + }, + { + "Name": "integrity", + "Value": "sha256-bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.6m5ktcz08b.js.gz", + "AssetFile": "adminlte/js/pages/dashboard.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m5ktcz08b" + }, + { + "Name": "integrity", + "Value": "sha256-E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard.js.gz" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.js", + "AssetFile": "adminlte/js/pages/dashboard.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000413907285" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.js", + "AssetFile": "adminlte/js/pages/dashboard.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7626" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bnZY4ULw2qZKXacDFXEKlD786EHXY1IkG0pK7XXXysg=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard.js.gz", + "AssetFile": "adminlte/js/pages/dashboard.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E3VjlRzTl2Nzg2TZqFhBiGCnm05gIlArwah3ZzO3LAA=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.jcitzkfdw9.js", + "AssetFile": "adminlte/js/pages/dashboard2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000539083558" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcitzkfdw9" + }, + { + "Name": "integrity", + "Value": "sha256-IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard2.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.jcitzkfdw9.js", + "AssetFile": "adminlte/js/pages/dashboard2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcitzkfdw9" + }, + { + "Name": "integrity", + "Value": "sha256-IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard2.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.jcitzkfdw9.js.gz", + "AssetFile": "adminlte/js/pages/dashboard2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcitzkfdw9" + }, + { + "Name": "integrity", + "Value": "sha256-Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard2.js.gz" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.js", + "AssetFile": "adminlte/js/pages/dashboard2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000539083558" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.js", + "AssetFile": "adminlte/js/pages/dashboard2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IwWqHQsUHLVuisaxiTW63WoFuVFebq/1lTBfec6TVek=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard2.js.gz", + "AssetFile": "adminlte/js/pages/dashboard2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yi27I6s8RL1l0a/wOg+yWSfqfPjlfiM8pitRWUxafIg=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.iwyywynqhh.js", + "AssetFile": "adminlte/js/pages/dashboard3.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001088139282" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwyywynqhh" + }, + { + "Name": "integrity", + "Value": "sha256-Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard3.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.iwyywynqhh.js", + "AssetFile": "adminlte/js/pages/dashboard3.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwyywynqhh" + }, + { + "Name": "integrity", + "Value": "sha256-Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard3.js" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.iwyywynqhh.js.gz", + "AssetFile": "adminlte/js/pages/dashboard3.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwyywynqhh" + }, + { + "Name": "integrity", + "Value": "sha256-bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=" + }, + { + "Name": "label", + "Value": "adminlte/js/pages/dashboard3.js.gz" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.js", + "AssetFile": "adminlte/js/pages/dashboard3.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001088139282" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.js", + "AssetFile": "adminlte/js/pages/dashboard3.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mr1ouHy5mv46kHghpthPcMsmg9Mcp1NDtDvuDH/UdQw=" + } + ] + }, + { + "Route": "adminlte/js/pages/dashboard3.js.gz", + "AssetFile": "adminlte/js/pages/dashboard3.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bTtE9JuCTMj6oiSbTG9hn2x/VShnm3d9MtpXQ/xf6cI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.c6s7kjz2aw.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000472143532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6s7kjz2aw" + }, + { + "Name": "integrity", + "Value": "sha256-ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.c6s7kjz2aw.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12000" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6s7kjz2aw" + }, + { + "Name": "integrity", + "Value": "sha256-ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.c6s7kjz2aw.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6s7kjz2aw" + }, + { + "Name": "integrity", + "Value": "sha256-b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000472143532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12000" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZPpF4B0V2dcPvnEGH5uqY1M+j//4ZzQHCewVrLA93UY=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b16lp3eby0czwMatlKzknWDwBVvlg6OS++GilBhqjPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000269469146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.rq6ftmralk.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000269469146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rq6ftmralk" + }, + { + "Name": "integrity", + "Value": "sha256-41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.rq6ftmralk.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rq6ftmralk" + }, + { + "Name": "integrity", + "Value": "sha256-41RG/65mJIRd5t+fIfRjrhbm2AqQr6RPxVj1a9RuC9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.rq6ftmralk.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rq6ftmralk" + }, + { + "Name": "integrity", + "Value": "sha256-iPtnVaOrBTnWveUDU0Qx7mTUkVSadHYPuMe5EVFNQ+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000533617930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9505" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.2udc9l3jt7.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322164948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2udc9l3jt7" + }, + { + "Name": "integrity", + "Value": "sha256-Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.2udc9l3jt7.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2udc9l3jt7" + }, + { + "Name": "integrity", + "Value": "sha256-Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.2udc9l3jt7.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2udc9l3jt7" + }, + { + "Name": "integrity", + "Value": "sha256-W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322164948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "27136" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ct5jUxdVKgwOWRSfx6sN42jgS9LCN+Z7a8G+I1aM1ZI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W8s/OHzD69LDBZF1py6haV4oolKjKAvtuGIrH3W+HCc=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.nhnjqb8n9t.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000533617930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhnjqb8n9t" + }, + { + "Name": "integrity", + "Value": "sha256-VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.nhnjqb8n9t.css", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9505" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhnjqb8n9t" + }, + { + "Name": "integrity", + "Value": "sha256-VVwFF2ph19esXSE7XOpp59s8M2E1px3vPtiYrRxYmIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.nhnjqb8n9t.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhnjqb8n9t" + }, + { + "Name": "integrity", + "Value": "sha256-xwcfVBXxZgWduwctrACq9IJFTlGyD8GaTmuS1jTtV3k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029406575" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "169979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.1b18im6hz6.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021108625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47373" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1b18im6hz6" + }, + { + "Name": "integrity", + "Value": "sha256-Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.1b18im6hz6.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "194946" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1b18im6hz6" + }, + { + "Name": "integrity", + "Value": "sha256-Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.1b18im6hz6.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47373" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1b18im6hz6" + }, + { + "Name": "integrity", + "Value": "sha256-K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021108625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47373" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "194946" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yz37uP9WO/WbAtsmloyLZgev9L+HGmP3RO0MtnNR+6g=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47373" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K54Jd++zrJpQgSBhzbKMGhLDLIVu6WSe1Duzh7lvrSM=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.c5aexzrvms.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048132461" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c5aexzrvms" + }, + { + "Name": "integrity", + "Value": "sha256-IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.c5aexzrvms.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "97143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c5aexzrvms" + }, + { + "Name": "integrity", + "Value": "sha256-IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.c5aexzrvms.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c5aexzrvms" + }, + { + "Name": "integrity", + "Value": "sha256-dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000048132461" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "97143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IDjtSKvjndPyhR5scv5bW8bGdtALiz1LOQFBkXZ4J2c=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dn5Gj9BAG4PMIoDkeH+23C1yOe41yaJDiYoWBulIbmw=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018708024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53452" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "204632" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53452" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.qu629hq1aa.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018708024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53452" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qu629hq1aa" + }, + { + "Name": "integrity", + "Value": "sha256-zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.qu629hq1aa.map", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "204632" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qu629hq1aa" + }, + { + "Name": "integrity", + "Value": "sha256-zgOLfvPRmu3mgas4JZFz2rO+QYQXTDpZJT1fENAar9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.qu629hq1aa.map.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53452" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qu629hq1aa" + }, + { + "Name": "integrity", + "Value": "sha256-hD3KO0sx5/CZw2ixKw7B9x++E484ar5+WCj/JbtqeBk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.yf1d69avuu.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029406575" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yf1d69avuu" + }, + { + "Name": "integrity", + "Value": "sha256-cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.yf1d69avuu.js", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "169979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yf1d69avuu" + }, + { + "Name": "integrity", + "Value": "sha256-cs0WLsoyz/+Bm0IjB8OZ8DibmHYI5JSAZMOS7ObViJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.yf1d69avuu.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yf1d69avuu" + }, + { + "Name": "integrity", + "Value": "sha256-UBFNvOR2ABb4Ff5HWVDMw0al7Gf+nz0ggYlQr7Wioko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.dn4p5039lr.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064213703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dn4p5039lr" + }, + { + "Name": "integrity", + "Value": "sha256-yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.dn4p5039lr.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "73643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dn4p5039lr" + }, + { + "Name": "integrity", + "Value": "sha256-yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.dn4p5039lr.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dn4p5039lr" + }, + { + "Name": "integrity", + "Value": "sha256-aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064213703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "73643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yXiwxYrPcgYMgyh4B+LVVbjZkOt3WVW/UM27toUXbUs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aZw+8nwOEzGTjmIBAKGNjheRs9PwD2cuepxtIRdr0x8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000111632061" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "38833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.q16u1lqa0x.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000111632061" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q16u1lqa0x" + }, + { + "Name": "integrity", + "Value": "sha256-4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.q16u1lqa0x.js", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "38833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q16u1lqa0x" + }, + { + "Name": "integrity", + "Value": "sha256-4lCHEUboc7LpGnxJq1SxJznybwY+XOCsmT/rHunmdvk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.q16u1lqa0x.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8957" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q16u1lqa0x" + }, + { + "Name": "integrity", + "Value": "sha256-Qe/76uy0JAXrUfuD+5T/Sc8Hsdrv2wNYs+0TcI3gDdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.ar54r9r2l4.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000413564930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar54r9r2l4" + }, + { + "Name": "integrity", + "Value": "sha256-2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.ar54r9r2l4.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12764" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar54r9r2l4" + }, + { + "Name": "integrity", + "Value": "sha256-2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.ar54r9r2l4.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar54r9r2l4" + }, + { + "Name": "integrity", + "Value": "sha256-H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000413564930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12764" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2hphNHa7mkOqs+fyvfG7DBO2BHR2eYM1SUzO/UYA3Qo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H2K3NJY2bVfsfUf/Ylfbe1kNjIDeJ8B2+nq9bnnbf64=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.3tpjqeifhk.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000422475708" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2366" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tpjqeifhk" + }, + { + "Name": "integrity", + "Value": "sha256-mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.3tpjqeifhk.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11226" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tpjqeifhk" + }, + { + "Name": "integrity", + "Value": "sha256-mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.3tpjqeifhk.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2366" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tpjqeifhk" + }, + { + "Name": "integrity", + "Value": "sha256-foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000422475708" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2366" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11226" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mcS8StvTE6eOkECRGy/Z/Zdrb99s5c9ob+3WQGYykNQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2366" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-foJmYVnuPrJY1FZ04wzOngiIOLe7JKVbm5LhHEC+5Ag=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000369139904" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.k3cfaeu6m9.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000369139904" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k3cfaeu6m9" + }, + { + "Name": "integrity", + "Value": "sha256-AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.k3cfaeu6m9.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k3cfaeu6m9" + }, + { + "Name": "integrity", + "Value": "sha256-AHO8fQ3KH6fKUFqsu2j98uhHwkt9qb2sENXkdxeEAfw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.k3cfaeu6m9.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k3cfaeu6m9" + }, + { + "Name": "integrity", + "Value": "sha256-7XSddSbmdZ88CZJ5IUiL6fZ5y+TaI6gBcangR3rVIGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.0o063kqmo0.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411692054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2428" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0o063kqmo0" + }, + { + "Name": "integrity", + "Value": "sha256-4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.0o063kqmo0.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0o063kqmo0" + }, + { + "Name": "integrity", + "Value": "sha256-4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.0o063kqmo0.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2428" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0o063kqmo0" + }, + { + "Name": "integrity", + "Value": "sha256-tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411692054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2428" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4BtvEX96fihABtAKhtBJEJjquQJbk6B9XdW5hrL/gog=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2428" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tocloqbwJyrdAKAzARUOyCrqKkt49BjUfoKqEgxAxD4=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000803212851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6539" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000849617672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.nfon3evr3b.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000849617672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nfon3evr3b" + }, + { + "Name": "integrity", + "Value": "sha256-jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.nfon3evr3b.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nfon3evr3b" + }, + { + "Name": "integrity", + "Value": "sha256-jZmanauxCgDmoxhyA8G9wcn5MjCJ5boAPkYuebYNkOQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.nfon3evr3b.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nfon3evr3b" + }, + { + "Name": "integrity", + "Value": "sha256-HI8AnJUycSVK/gcx4hR4NKUOKppFlca9LHqwqiPSzjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.sanj5sweqd.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000803212851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sanj5sweqd" + }, + { + "Name": "integrity", + "Value": "sha256-tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.sanj5sweqd.css", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6539" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sanj5sweqd" + }, + { + "Name": "integrity", + "Value": "sha256-tJHPIXze6GA3WdaJ7BnAO91GdyeFm3rxKHUycGtX5M8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.sanj5sweqd.css.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sanj5sweqd" + }, + { + "Name": "integrity", + "Value": "sha256-FofBn2LlOx6n3XN7RlZEDEIWn4O8uiCMLZE+maFPAtM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000207296849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4823" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "27061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4823" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.7tb7eukg00.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275482094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7tb7eukg00" + }, + { + "Name": "integrity", + "Value": "sha256-dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.7tb7eukg00.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7tb7eukg00" + }, + { + "Name": "integrity", + "Value": "sha256-dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.7tb7eukg00.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7tb7eukg00" + }, + { + "Name": "integrity", + "Value": "sha256-7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275482094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dYKTjh5lusfomevuniah8fT8WitISPk45s3I1Glz0lA=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7ihb7q4V6bOtfM5KvLOp42K3eUtdvMnWLC5pEFPmeno=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.rzno7amm9x.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000207296849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4823" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzno7amm9x" + }, + { + "Name": "integrity", + "Value": "sha256-dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.rzno7amm9x.js", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzno7amm9x" + }, + { + "Name": "integrity", + "Value": "sha256-dz5xfBBfjSAqdGjLvI4XOQbCLqdLfi7ZhZScdnDRBxE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.rzno7amm9x.js.gz", + "AssetFile": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4823" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzno7amm9x" + }, + { + "Name": "integrity", + "Value": "sha256-YkEtKjdRin8qaPJoQJr1KojhWVMK+TGUaaKCe+shYz4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.5v7kidqsie.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037992477" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v7kidqsie" + }, + { + "Name": "integrity", + "Value": "sha256-L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.5v7kidqsie.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "148465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v7kidqsie" + }, + { + "Name": "integrity", + "Value": "sha256-L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.5v7kidqsie.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v7kidqsie" + }, + { + "Name": "integrity", + "Value": "sha256-SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.4bqpgft7cy.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000020159665" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bqpgft7cy" + }, + { + "Name": "integrity", + "Value": "sha256-cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.4bqpgft7cy.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243909" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bqpgft7cy" + }, + { + "Name": "integrity", + "Value": "sha256-cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.4bqpgft7cy.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bqpgft7cy" + }, + { + "Name": "integrity", + "Value": "sha256-Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000020159665" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "243909" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cI14dfElUo9qtzfUkPfsebTvsYfzEJi/Eed2UHuu+l8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ry3rPso2LoR1KHD7w04TXofbgpDBhxsfd2bQ80cMwLs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.lvacmjdy9i.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010862599" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92058" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvacmjdy9i" + }, + { + "Name": "integrity", + "Value": "sha256-ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.lvacmjdy9i.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "409586" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvacmjdy9i" + }, + { + "Name": "integrity", + "Value": "sha256-ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.lvacmjdy9i.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92058" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvacmjdy9i" + }, + { + "Name": "integrity", + "Value": "sha256-axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010862599" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92058" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "409586" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ERRQ/8wMtyNMZYrOC1pJLopanziYfiHrJg5t7CzA+K8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "92058" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-axlYNiM01HicL9bYoCKtY7sb4H/OXENiezWNQHApzlc=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.7qkp3v2h36.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045774970" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7qkp3v2h36" + }, + { + "Name": "integrity", + "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.7qkp3v2h36.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "84384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7qkp3v2h36" + }, + { + "Name": "integrity", + "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.7qkp3v2h36.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7qkp3v2h36" + }, + { + "Name": "integrity", + "Value": "sha256-6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045774970" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "84384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.e5uqm16rp6.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012018653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83203" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5uqm16rp6" + }, + { + "Name": "integrity", + "Value": "sha256-3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.e5uqm16rp6.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "316181" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5uqm16rp6" + }, + { + "Name": "integrity", + "Value": "sha256-3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.e5uqm16rp6.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83203" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5uqm16rp6" + }, + { + "Name": "integrity", + "Value": "sha256-18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6hFh8SmSXIi9qfeckdKty4p8ahPKEUJQZMG9KJV0ogU=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012018653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83203" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "316181" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3kqSeai+EFuug/jQbVM1+BgDQaQPkHmidIcINvHfBQI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83203" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-18p8PUF6P69wgROsPYf5hyut70ZA6LP7bFr+7McJeCA=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037992477" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "148465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L1XJrMrC/5jsaqldunCq6+msa4ay6S0crfMJaAshDiE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SHhtx0oenGAFGf06FRix7SZmnRHANB8Ke7lDPasdGn0=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017286682" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57847" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "254480" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57847" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.o3jle8hwwp.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017286682" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57847" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3jle8hwwp" + }, + { + "Name": "integrity", + "Value": "sha256-9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.o3jle8hwwp.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "254480" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3jle8hwwp" + }, + { + "Name": "integrity", + "Value": "sha256-9FGHAHLWqjUS8XqoFP1xDTw071GEfiDz9BvJ44EqfJk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.js.o3jle8hwwp.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57847" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3jle8hwwp" + }, + { + "Name": "integrity", + "Value": "sha256-FvTDn8idcdI6k9g3ZY7ZHGxYtHvmtfnjreY6YrENQKs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066809193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "63473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021318780" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46906" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "192479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46906" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.rgpsy9uzoj.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021318780" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46906" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgpsy9uzoj" + }, + { + "Name": "integrity", + "Value": "sha256-6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.rgpsy9uzoj.map", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "192479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgpsy9uzoj" + }, + { + "Name": "integrity", + "Value": "sha256-6zWW/SuE/T0mEyEHx4mNnWSEim2NFyMyNVCXadovZV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.js.rgpsy9uzoj.map.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46906" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgpsy9uzoj" + }, + { + "Name": "integrity", + "Value": "sha256-zxznjWJEGk8o4sbbw8uT3e6hy3fJySsQWUVoySA0LEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.sc9grb142d.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000066809193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc9grb142d" + }, + { + "Name": "integrity", + "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.sc9grb142d.js", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "63473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc9grb142d" + }, + { + "Name": "integrity", + "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap/js/bootstrap.min.sc9grb142d.js.gz", + "AssetFile": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc9grb142d" + }, + { + "Name": "integrity", + "Value": "sha256-z5ns0PuEPwrFxaJFfLPEsCXs/sXq/Aik2i5mAbEVIPI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap/js/bootstrap.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.9futv0purj.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001589825119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "628" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9futv0purj" + }, + { + "Name": "integrity", + "Value": "sha256-Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.9futv0purj.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2143" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9futv0purj" + }, + { + "Name": "integrity", + "Value": "sha256-Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.9futv0purj.css.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "628" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9futv0purj" + }, + { + "Name": "integrity", + "Value": "sha256-kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001589825119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "628" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2143" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rc7qehIUAvUU83WAnidS/JkeJ0TRJLSEP69Fz1F7ing=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "628" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kuqXl057MslMjPhQFou39cDgMSOdIzvT38rqiSIxF0w=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002439024390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "409" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "409" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.ybw3jqk99w.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002439024390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "409" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ybw3jqk99w" + }, + { + "Name": "integrity", + "Value": "sha256-buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.ybw3jqk99w.css", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ybw3jqk99w" + }, + { + "Name": "integrity", + "Value": "sha256-buHEe+156Hk0w29lJZctyXXfZl4mb8OFe1M6QfDanMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.ybw3jqk99w.css.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "409" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ybw3jqk99w" + }, + { + "Name": "integrity", + "Value": "sha256-fEbDH8ml8J/5VW9rBg8NtGPdYhIVWGkQ1por5JAahmo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168180289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5945" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5945" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.4a720thlf0.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000262950302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3802" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4a720thlf0" + }, + { + "Name": "integrity", + "Value": "sha256-XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.4a720thlf0.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4a720thlf0" + }, + { + "Name": "integrity", + "Value": "sha256-XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.4a720thlf0.js.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3802" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4a720thlf0" + }, + { + "Name": "integrity", + "Value": "sha256-tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000262950302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3802" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XHVAEv7CSCRXo+slNn25KPUtYI1pmIMZqlacgqRvOGM=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3802" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tNQAlTI7BS94eKcgHMdTM+khPbggdjMKDCUwGTNP5pM=" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.po5ole0p17.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168180289" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5945" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5ole0p17" + }, + { + "Name": "integrity", + "Value": "sha256-yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.po5ole0p17.js", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5ole0p17" + }, + { + "Name": "integrity", + "Value": "sha256-yZ+xj2mv2YAZB/1hGQRhP+s9M0q1KfeHij/py4NJKfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.po5ole0p17.js.gz", + "AssetFile": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5945" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5ole0p17" + }, + { + "Name": "integrity", + "Value": "sha256-yEHz6AgF4ZzREM3ZT/QKrZeH8Cq7k7A1JF2hHaNrlss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.0djt4x4dwb.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0djt4x4dwb" + }, + { + "Name": "integrity", + "Value": "sha256-RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.0djt4x4dwb.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5176" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0djt4x4dwb" + }, + { + "Name": "integrity", + "Value": "sha256-RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.0djt4x4dwb.js.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0djt4x4dwb" + }, + { + "Name": "integrity", + "Value": "sha256-0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5176" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RC9s9PlMm/g1TyklsqMq3XNDGA09LNQ9bdveaFgSAcY=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0dX6U58K9m3/kPxUYgAXg2d899j4V7qNaLg3S2RJKUU=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000319795331" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3126" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10377" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3126" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.x1t4ger0j7.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000319795331" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3126" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1t4ger0j7" + }, + { + "Name": "integrity", + "Value": "sha256-69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.x1t4ger0j7.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10377" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1t4ger0j7" + }, + { + "Name": "integrity", + "Value": "sha256-69tndI7cdU7BS0ZnRXzEclW0wntengKx1IH0FWecSMU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.x1t4ger0j7.map.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3126" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1t4ger0j7" + }, + { + "Name": "integrity", + "Value": "sha256-mvb+JB4ektj4PDClEXzMVWLzlNfIxkhIzPA43zmifsw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.iaw1y0hnmh.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956937799" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iaw1y0hnmh" + }, + { + "Name": "integrity", + "Value": "sha256-uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.iaw1y0hnmh.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iaw1y0hnmh" + }, + { + "Name": "integrity", + "Value": "sha256-uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.iaw1y0hnmh.js.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iaw1y0hnmh" + }, + { + "Name": "integrity", + "Value": "sha256-U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956937799" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uotKLzPk8OYpWSYC9+NVzz8J4tj120j/YoyhBzQLSPs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U6K8br0/0sAxAXkh2qL9vhMjzDuIoteFESxkBLjMb8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423549343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2360" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7435" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2360" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.zgrb9rykue.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423549343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2360" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zgrb9rykue" + }, + { + "Name": "integrity", + "Value": "sha256-03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.zgrb9rykue.map", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7435" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zgrb9rykue" + }, + { + "Name": "integrity", + "Value": "sha256-03RBS2M29R5GkO+mpaplOlAWgpUjeqgaAW8L5XOSMEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.zgrb9rykue.map.gz", + "AssetFile": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2360" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zgrb9rykue" + }, + { + "Name": "integrity", + "Value": "sha256-Xfx/1cIQiZTyC+p295mK6a2i1EDIBJzB7lyRla3tQpY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000939849624" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4038" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.krefq7tol2.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000678426052" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1473" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "krefq7tol2" + }, + { + "Name": "integrity", + "Value": "sha256-gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.krefq7tol2.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5308" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "krefq7tol2" + }, + { + "Name": "integrity", + "Value": "sha256-gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.krefq7tol2.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1473" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "krefq7tol2" + }, + { + "Name": "integrity", + "Value": "sha256-Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000678426052" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1473" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5308" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gGE4KemxoeX+j2SaSx3Ei2mAKyBqAOq82sKJGBJMprk=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1473" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pt/mTE+u1//jOApOa9vkncsO1jBTMuFCtg3N+tLIeFE=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.dbwf3ub7kb.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000939849624" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dbwf3ub7kb" + }, + { + "Name": "integrity", + "Value": "sha256-Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.dbwf3ub7kb.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4038" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dbwf3ub7kb" + }, + { + "Name": "integrity", + "Value": "sha256-Wdwgkd1p4rkmsKvwbB7K0aZCIv7qpxJyuqwllI/jRjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.dbwf3ub7kb.css.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dbwf3ub7kb" + }, + { + "Name": "integrity", + "Value": "sha256-NWavhjmdxFmAhgXYpACSxk5l+g+MtKgwxdhBb3eDHek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001002004008" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "997" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3236" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "997" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000601684717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9596" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.qnh0dfmtrw.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000601684717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnh0dfmtrw" + }, + { + "Name": "integrity", + "Value": "sha256-ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.qnh0dfmtrw.map", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9596" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnh0dfmtrw" + }, + { + "Name": "integrity", + "Value": "sha256-ZsJQ7R3PCq1EGnLgWXOh0bsanWmvdb2qdm271nsxju4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.qnh0dfmtrw.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnh0dfmtrw" + }, + { + "Name": "integrity", + "Value": "sha256-4hd60dUAqcidVP5sigkqlDOWBB0Dn5uKwlmuhNFtI+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.gotvrtubn3.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001002004008" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "997" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gotvrtubn3" + }, + { + "Name": "integrity", + "Value": "sha256-ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.gotvrtubn3.css", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3236" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gotvrtubn3" + }, + { + "Name": "integrity", + "Value": "sha256-ANeiWnWqm6gfpNdDeuiElQBFVDc3o79vZDuOXOGJ0Gs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/css/bs-stepper.min.gotvrtubn3.css.gz", + "AssetFile": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "997" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gotvrtubn3" + }, + { + "Name": "integrity", + "Value": "sha256-zH/vVh3jgtT/Vouuz1c8b5aE6q1MG/Tdrrcw1O7OJYw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/css/bs-stepper.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.5xh6n88uv8.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000316555872" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5xh6n88uv8" + }, + { + "Name": "integrity", + "Value": "sha256-x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.5xh6n88uv8.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13451" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5xh6n88uv8" + }, + { + "Name": "integrity", + "Value": "sha256-x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.5xh6n88uv8.js.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5xh6n88uv8" + }, + { + "Name": "integrity", + "Value": "sha256-nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000316555872" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13451" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x8j1kHX+MyawAbFmC1uHJUZ3+b+7pdceJl+LYYiUJxo=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nsyVni2G4G+R+tvPKu34ZT1AvnDLLP5MKbpndUWBFt4=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140567894" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7113" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25589" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7113" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.pu8gxnd8o0.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140567894" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7113" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pu8gxnd8o0" + }, + { + "Name": "integrity", + "Value": "sha256-LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.pu8gxnd8o0.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25589" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pu8gxnd8o0" + }, + { + "Name": "integrity", + "Value": "sha256-LyJEJT3oMHyQ6iVNKB3Vk5BbrW51iOmC4BSJ4abZ2ls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.js.pu8gxnd8o0.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7113" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pu8gxnd8o0" + }, + { + "Name": "integrity", + "Value": "sha256-/ZQDeBZKjQ87dSf0q3MVF6JzeDwnBpNUnfqcOTWuIGU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.698euj8k4e.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000486618005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "698euj8k4e" + }, + { + "Name": "integrity", + "Value": "sha256-tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.698euj8k4e.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "698euj8k4e" + }, + { + "Name": "integrity", + "Value": "sha256-tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.698euj8k4e.js.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "698euj8k4e" + }, + { + "Name": "integrity", + "Value": "sha256-XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000486618005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tlQJhXnMIa/Ff7ezsKeFPc5VggrD2gu5WvVUNZOrOLs=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XPhA/afGbl8WA7ZpZKr9CTDHXXNJtYimT3jAasat2Js=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000182481752" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18729" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.vx8kere3jb.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000182481752" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vx8kere3jb" + }, + { + "Name": "integrity", + "Value": "sha256-vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.vx8kere3jb.map", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18729" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vx8kere3jb" + }, + { + "Name": "integrity", + "Value": "sha256-vdvu1Oi+d3qKFtT8wxiay/jReyCPQEdBz/GYfSOJ2AE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.vx8kere3jb.map.gz", + "AssetFile": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5479" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vx8kere3jb" + }, + { + "Name": "integrity", + "Value": "sha256-+EkLaLVGIAHoRXK9NV0tpVt6+BuwuhuL/e7S7zNBU4s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.fqegk8fqnn.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007108533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "140675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqegk8fqnn" + }, + { + "Name": "integrity", + "Value": "sha256-aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.fqegk8fqnn.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "600535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqegk8fqnn" + }, + { + "Name": "integrity", + "Value": "sha256-aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.fqegk8fqnn.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "140675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqegk8fqnn" + }, + { + "Name": "integrity", + "Value": "sha256-NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007108533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "140675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "600535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aS0332ww1y291smHsPMu+xY8rq/nR5EnT6Ma1aAAxAA=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "140675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDkcPy1dwvyURQKqjSfACb7x9MgExhgRrMvQSADNi9o=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.ez5nmyv303.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014251917" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70165" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ez5nmyv303" + }, + { + "Name": "integrity", + "Value": "sha256-Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.ez5nmyv303.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "226503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ez5nmyv303" + }, + { + "Name": "integrity", + "Value": "sha256-Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.ez5nmyv303.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70165" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ez5nmyv303" + }, + { + "Name": "integrity", + "Value": "sha256-0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014251917" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70165" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "226503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cszn4X8X8Lt++8rIor3Zc3PYGIbVlS2AeO7VkNC/wPY=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70165" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0lmix0+YlzcHVr7AJnn4Gv3dHWztlR79xxC5EzntDA8=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.c6nyh32yx9.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6nyh32yx9" + }, + { + "Name": "integrity", + "Value": "sha256-LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.css" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.c6nyh32yx9.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "858" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6nyh32yx9" + }, + { + "Name": "integrity", + "Value": "sha256-LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.css" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.c6nyh32yx9.css.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6nyh32yx9" + }, + { + "Name": "integrity", + "Value": "sha256-PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "858" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LBn8ETlhk/it6H6yowFNLWz7zPT4hRBrl9pXKMeWGaw=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.css.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PeebXbK3FiFTgmGGTlRekBcCO2YJxI4i1kSSDMeqjHY=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.godga2crup.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009349377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "godga2crup" + }, + { + "Name": "integrity", + "Value": "sha256-wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.godga2crup.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "445053" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "godga2crup" + }, + { + "Name": "integrity", + "Value": "sha256-wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.godga2crup.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "godga2crup" + }, + { + "Name": "integrity", + "Value": "sha256-5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009349377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "445053" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wESnP/BrB2L5/FlyzD3xB15qlw5CdOAzFiEHKci+B2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5HIQzO5KNkJOO3WsyPnobdlFlcZXbaSKtEpGlBbihPs=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.79wajdobwg.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018896805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79wajdobwg" + }, + { + "Name": "integrity", + "Value": "sha256-NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.79wajdobwg.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "173084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79wajdobwg" + }, + { + "Name": "integrity", + "Value": "sha256-NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.79wajdobwg.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79wajdobwg" + }, + { + "Name": "integrity", + "Value": "sha256-YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.css.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018896805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.js", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "173084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NbfQrKSThKXYuVaEBwxc9oH+OCHLcDclYdr25GGIGb8=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.js.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YErOxt9fwHuM0P3OC+UnzcLKYu+hZBQk0iSt0tmhHpQ=" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.zxtkyfow31.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zxtkyfow31" + }, + { + "Name": "integrity", + "Value": "sha256-aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.zxtkyfow31.css", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zxtkyfow31" + }, + { + "Name": "integrity", + "Value": "sha256-aa0xaJgmK/X74WM224KMQeNQC2xYKwlAt08oZqjeF0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/chart.js/Chart.min.zxtkyfow31.css.gz", + "AssetFile": "adminlte/plugins/chart.js/Chart.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zxtkyfow31" + }, + { + "Name": "integrity", + "Value": "sha256-Q33PV5Di5snO9jLYZD/+HpSDkikcb+hpPy54bnaNflM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/chart.js/Chart.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.b2c3blhcvn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411184211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2c3blhcvn" + }, + { + "Name": "integrity", + "Value": "sha256-LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/comment.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.b2c3blhcvn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9404" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2c3blhcvn" + }, + { + "Name": "integrity", + "Value": "sha256-LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/comment.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.b2c3blhcvn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2c3blhcvn" + }, + { + "Name": "integrity", + "Value": "sha256-5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/comment.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000411184211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9404" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LTH+adhSXjLoGil2y1Mxf5oYRmi2HHL/4slZgcgvxUk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/comment.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/comment.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2431" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5OHpbSBiIKSBLdETAKUgBTC87mSYxjx28hK82QSTJSM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000590667454" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.qzpv5z0b42.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000590667454" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzpv5z0b42" + }, + { + "Name": "integrity", + "Value": "sha256-qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/continuecomment.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.qzpv5z0b42.js", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzpv5z0b42" + }, + { + "Name": "integrity", + "Value": "sha256-qhkcmb4cH8aaE+L1tG5tib+x6nczOOUcFOgLdmhkHzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/continuecomment.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/comment/continuecomment.qzpv5z0b42.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzpv5z0b42" + }, + { + "Name": "integrity", + "Value": "sha256-v47l8PcPM4K0O5n6EaeR8dC0VtijH+33gI3k4jKmyks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/comment/continuecomment.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.css", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.css", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.g3rrrite1n.css", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3rrrite1n" + }, + { + "Name": "integrity", + "Value": "sha256-7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.g3rrrite1n.css", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3rrrite1n" + }, + { + "Name": "integrity", + "Value": "sha256-7JSw+VnAEt9iw8HgL7pGLbwwClWSGQyZXOLB6bpvIho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.g3rrrite1n.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3rrrite1n" + }, + { + "Name": "integrity", + "Value": "sha256-ixKETes4iHoBAHqwZJnb1MS20gN2+XDfTHQvFpmx5H0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.js", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618429190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.js", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5413" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.o6bcsia845.js", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618429190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6bcsia845" + }, + { + "Name": "integrity", + "Value": "sha256-oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.o6bcsia845.js", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5413" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6bcsia845" + }, + { + "Name": "integrity", + "Value": "sha256-oIeGCuJo7ediTxMIkQGi9Drb6Y46pVjX1NO5iSabV00=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/dialog/dialog.o6bcsia845.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6bcsia845" + }, + { + "Name": "integrity", + "Value": "sha256-nbMCLBsuGJVulEp7fDrcwzTz71nUA6a5pddYbws8qaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/dialog/dialog.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.tazrs1izcu.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tazrs1izcu" + }, + { + "Name": "integrity", + "Value": "sha256-dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/autorefresh.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.tazrs1izcu.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tazrs1izcu" + }, + { + "Name": "integrity", + "Value": "sha256-dQsyU5wFj8owmkDlQSmZRmZ5PeMXau4Ys6R7W6Mw/8I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/autorefresh.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/autorefresh.tazrs1izcu.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tazrs1izcu" + }, + { + "Name": "integrity", + "Value": "sha256-ZQGGr6OqZF2l9fc8HPAri5DPWaTQzMP35YhvXdS0ixk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/autorefresh.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.0v3unceit5.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v3unceit5" + }, + { + "Name": "integrity", + "Value": "sha256-9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.0v3unceit5.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v3unceit5" + }, + { + "Name": "integrity", + "Value": "sha256-9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.0v3unceit5.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v3unceit5" + }, + { + "Name": "integrity", + "Value": "sha256-R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.6x5lmaz4va.css", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x5lmaz4va" + }, + { + "Name": "integrity", + "Value": "sha256-xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.6x5lmaz4va.css", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "122" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x5lmaz4va" + }, + { + "Name": "integrity", + "Value": "sha256-xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.6x5lmaz4va.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x5lmaz4va" + }, + { + "Name": "integrity", + "Value": "sha256-ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.css", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.css", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "122" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xoAz7cEWg2Te2jAkCyoUzgslO6sK3/fNMzDOwIDrU5g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZSIgbUW8kSVUcBJHxQvO4ymdWKdM1KTik80gRHGKfOc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9AkJ7tQS+Cv592ZFtbSDgW2V6hC9BMvxGYHLI7KQ9KE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/fullscreen.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R95f2l9dPdT2AGttt3PGXJ9ncTW9ZHlvfr9sFh/vswQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000660938533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1512" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1512" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.uhzpy6957x.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000660938533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1512" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhzpy6957x" + }, + { + "Name": "integrity", + "Value": "sha256-DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/panel.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.uhzpy6957x.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhzpy6957x" + }, + { + "Name": "integrity", + "Value": "sha256-DnbsPSjbDV6LrAO2jv+Q89HuRJPmX+muXi/02Q4+Khk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/panel.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/panel.uhzpy6957x.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/panel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1512" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhzpy6957x" + }, + { + "Name": "integrity", + "Value": "sha256-iZoEAuAUxBNHTjkkBgqmA1HpVBKtOXiwWVffyZCXzws=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/panel.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956022945" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1045" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1045" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.rzqys9k6ac.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956022945" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1045" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzqys9k6ac" + }, + { + "Name": "integrity", + "Value": "sha256-J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/placeholder.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.rzqys9k6ac.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzqys9k6ac" + }, + { + "Name": "integrity", + "Value": "sha256-J91SR46vZhJZPoPxedSjfQJ9qnEe7X0I3JTh5r4a2YA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/placeholder.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/placeholder.rzqys9k6ac.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1045" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzqys9k6ac" + }, + { + "Name": "integrity", + "Value": "sha256-Cv0e+W/gW7k9EzHZEQd7HdLuIWJlRv6YYKhZSiAuKFE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/placeholder.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001240694789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.pc4dhs8mdl.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001240694789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc4dhs8mdl" + }, + { + "Name": "integrity", + "Value": "sha256-SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/rulers.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.pc4dhs8mdl.js", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc4dhs8mdl" + }, + { + "Name": "integrity", + "Value": "sha256-SfjpemcXYLg4sl++4EXmhu87aetsPnb+ipxVMq7ZCSo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/rulers.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/display/rulers.pc4dhs8mdl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/display/rulers.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc4dhs8mdl" + }, + { + "Name": "integrity", + "Value": "sha256-Eu7NXacePo4cMNeLla7FQnw/gxHFe6vkfi+bwTuwCN0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/display/rulers.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000486618005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.l0pvf1dm2s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000486618005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l0pvf1dm2s" + }, + { + "Name": "integrity", + "Value": "sha256-ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closebrackets.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.l0pvf1dm2s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l0pvf1dm2s" + }, + { + "Name": "integrity", + "Value": "sha256-ZfNwjIPGaaJcqLaYTl7f5y1HM0bshBp5Ab/vc6WK3XQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closebrackets.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closebrackets.l0pvf1dm2s.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2054" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l0pvf1dm2s" + }, + { + "Name": "integrity", + "Value": "sha256-wD29TG8PQOngH6D5A6mUidJRF6HTqvu+poFQ+hzIdwg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closebrackets.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000358680057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2787" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8727" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2787" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.yn7rlki1ie.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000358680057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2787" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yn7rlki1ie" + }, + { + "Name": "integrity", + "Value": "sha256-cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closetag.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.yn7rlki1ie.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8727" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yn7rlki1ie" + }, + { + "Name": "integrity", + "Value": "sha256-cjv2KBvCjhSvdWyqoBWUzvFhHWfW1RBbyvBV55u4fIM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closetag.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/closetag.yn7rlki1ie.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2787" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yn7rlki1ie" + }, + { + "Name": "integrity", + "Value": "sha256-aspqgTU2m5tVr365ReSPpmhdihd0yaxgBmGYcMcpQyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/closetag.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000670690812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.kygmz4l5wn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000670690812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kygmz4l5wn" + }, + { + "Name": "integrity", + "Value": "sha256-XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/continuelist.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.kygmz4l5wn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kygmz4l5wn" + }, + { + "Name": "integrity", + "Value": "sha256-XCJbbhx1qF1hxwQdJCpxqfCD8NYZa+Fa5ti72zPbAVk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/continuelist.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/continuelist.kygmz4l5wn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kygmz4l5wn" + }, + { + "Name": "integrity", + "Value": "sha256-rh2RYC943mJu7zVuVxpbE+YXWgMFy1UfCBn/uoZB0ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/continuelist.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000427715997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.r9hs3ijr0r.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000427715997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9hs3ijr0r" + }, + { + "Name": "integrity", + "Value": "sha256-kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.r9hs3ijr0r.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9hs3ijr0r" + }, + { + "Name": "integrity", + "Value": "sha256-kV4kRTnqB27jI1t+Pe43gn6EhMYBGJhh61YbADoR2x0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchbrackets.r9hs3ijr0r.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2337" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9hs3ijr0r" + }, + { + "Name": "integrity", + "Value": "sha256-/DTwvZuotKRaoVxfa9yhA5UlcyWom+TksK5Moy7nCOg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchbrackets.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001138952164" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.w1zbqaxpwy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001138952164" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1zbqaxpwy" + }, + { + "Name": "integrity", + "Value": "sha256-zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchtags.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.w1zbqaxpwy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1zbqaxpwy" + }, + { + "Name": "integrity", + "Value": "sha256-zGe1XuMwFHv0FKtmRyWrCb8rp2d5JbVOKNfdww6tPF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchtags.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/matchtags.w1zbqaxpwy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1zbqaxpwy" + }, + { + "Name": "integrity", + "Value": "sha256-qQCvEW/7GdbkPeop2MRNh0R4roa4Ml94uvahCquP09M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/matchtags.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.aecq5jsyu8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001908396947" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aecq5jsyu8" + }, + { + "Name": "integrity", + "Value": "sha256-QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/trailingspace.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.aecq5jsyu8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aecq5jsyu8" + }, + { + "Name": "integrity", + "Value": "sha256-QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/trailingspace.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.aecq5jsyu8.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aecq5jsyu8" + }, + { + "Name": "integrity", + "Value": "sha256-qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001908396947" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.js", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QlIFfwD0GqRkCon5lbBw3sxrGsXc0S27O+G2xToJcFs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/edit/trailingspace.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOwA+0Mgc0yLkOqFcs7ylpTLw8zkj6fLz73BdHj69xA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000744047619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4201" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.kw4ynqamju.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000744047619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw4ynqamju" + }, + { + "Name": "integrity", + "Value": "sha256-VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/brace-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.kw4ynqamju.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4201" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw4ynqamju" + }, + { + "Name": "integrity", + "Value": "sha256-VIw10Sdk2WpNuHimO3XU3JolWbxrZUbLHH7Z5NZRVpc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/brace-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/brace-fold.kw4ynqamju.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw4ynqamju" + }, + { + "Name": "integrity", + "Value": "sha256-2EsYYiR5Ii3i5z3Vbxk21KD68XmosC3f793TDSbSvbY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/brace-fold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.eq73n08r5o.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001107419712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq73n08r5o" + }, + { + "Name": "integrity", + "Value": "sha256-Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/comment-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.eq73n08r5o.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq73n08r5o" + }, + { + "Name": "integrity", + "Value": "sha256-Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/comment-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.eq73n08r5o.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq73n08r5o" + }, + { + "Name": "integrity", + "Value": "sha256-C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001107419712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gv+BU00XdkKYFF2RUMiaxX+g1u8kN/aQMQaw3IVoONE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/comment-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C5lgOGQKf3in1HJDKvF8gCRdsv+cBnAQXe2TdW1MUXw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000636942675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.xvpk1v8ko8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000636942675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xvpk1v8ko8" + }, + { + "Name": "integrity", + "Value": "sha256-Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldcode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.xvpk1v8ko8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5078" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xvpk1v8ko8" + }, + { + "Name": "integrity", + "Value": "sha256-Db3fy/EgPH02wuKbCtBEJ7GwNYqi1mPL0aEpA6zNCuk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldcode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldcode.xvpk1v8ko8.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xvpk1v8ko8" + }, + { + "Name": "integrity", + "Value": "sha256-mGN/44N5A/WS1bEqeHkj9WeGcia0tNT1xzjChHH7rOg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldcode.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.2kykbcxy2b.css", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004629629630" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kykbcxy2b" + }, + { + "Name": "integrity", + "Value": "sha256-Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.2kykbcxy2b.css", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kykbcxy2b" + }, + { + "Name": "integrity", + "Value": "sha256-Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.2kykbcxy2b.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kykbcxy2b" + }, + { + "Name": "integrity", + "Value": "sha256-HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.css", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004629629630" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.css", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dumz4CpxISOn4ySl1hInR4SO1VR6X5d9/58XV1OD8YU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HsPypK+dDLk8Y3dKdT97Hnzg+UJh7MFa1eUq4OmNYqw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.g5lku7op3u.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599880024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5lku7op3u" + }, + { + "Name": "integrity", + "Value": "sha256-7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.g5lku7op3u.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5531" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5lku7op3u" + }, + { + "Name": "integrity", + "Value": "sha256-7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.g5lku7op3u.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5lku7op3u" + }, + { + "Name": "integrity", + "Value": "sha256-wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599880024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5531" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7D3twAo9NlCViV49bSczfZ4iC30336iB8oRKCjGcdsE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/foldgutter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wMDGEm5lWzRc1adtVV0Ls8e6+L+Jhvopnisrb4sLTl0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001223990208" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "816" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "816" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.v6y5x2psy1.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001223990208" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "816" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v6y5x2psy1" + }, + { + "Name": "integrity", + "Value": "sha256-qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/indent-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.v6y5x2psy1.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v6y5x2psy1" + }, + { + "Name": "integrity", + "Value": "sha256-qSr7HzFcCl2arQRgQf3ddUmNnsVPyfQa7lHwf+Bi9YE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/indent-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/indent-fold.v6y5x2psy1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "816" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v6y5x2psy1" + }, + { + "Name": "integrity", + "Value": "sha256-Mv9QGDIriAajS79Unt8F8ak1oaUOgjMcbwHl6B++3K4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/indent-fold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001402524544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.yiujiw0skf.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001402524544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yiujiw0skf" + }, + { + "Name": "integrity", + "Value": "sha256-SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.yiujiw0skf.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yiujiw0skf" + }, + { + "Name": "integrity", + "Value": "sha256-SvP+dx4ZNoAWww7yKo8gAcMCCFdDFxLpQJ0SuYVbt70=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/markdown-fold.yiujiw0skf.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yiujiw0skf" + }, + { + "Name": "integrity", + "Value": "sha256-WB291k4SCdM9pOXN59nbS5+T8V3mhytn5DjRtv0xp1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/markdown-fold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000517063082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6884" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.jxr8zegvo9.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000517063082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxr8zegvo9" + }, + { + "Name": "integrity", + "Value": "sha256-Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/xml-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.jxr8zegvo9.js", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6884" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxr8zegvo9" + }, + { + "Name": "integrity", + "Value": "sha256-Z/pCxCGGonEeUglr09scrxmO9sOMQe5wfVEHbx+dMzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/xml-fold.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/fold/xml-fold.jxr8zegvo9.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxr8zegvo9" + }, + { + "Name": "integrity", + "Value": "sha256-FL9zthHR/s/Toh/F1Hq8tmmr5dbRLuSyPfaCSZ8AlYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/fold/xml-fold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001212121212" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.v4jfh1how9.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001212121212" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v4jfh1how9" + }, + { + "Name": "integrity", + "Value": "sha256-n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.v4jfh1how9.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v4jfh1how9" + }, + { + "Name": "integrity", + "Value": "sha256-n3PjeFabZUpf0+EUmu2/0FGipdzvq9ZUzU7KhUJKW2A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/anyword-hint.v4jfh1how9.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v4jfh1how9" + }, + { + "Name": "integrity", + "Value": "sha256-7gFWZNd2cdvfC7IwQsFsv5xBDB5jKByfIb7upQb+tb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/anyword-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000943396226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.ui5znhxf6g.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000943396226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ui5znhxf6g" + }, + { + "Name": "integrity", + "Value": "sha256-tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/css-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.ui5znhxf6g.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ui5znhxf6g" + }, + { + "Name": "integrity", + "Value": "sha256-tjFY4bBwMY4kIfaKPYs+hbG3ukNjgcb2cCkKSFGeJfk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/css-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/css-hint.ui5znhxf6g.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ui5znhxf6g" + }, + { + "Name": "integrity", + "Value": "sha256-J48owXfCkoq1DU24+OH7ytACMk3IZezB8wX39aRLc9w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/css-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.87y5s8nnc8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000281452294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87y5s8nnc8" + }, + { + "Name": "integrity", + "Value": "sha256-ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/html-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.87y5s8nnc8.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11807" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87y5s8nnc8" + }, + { + "Name": "integrity", + "Value": "sha256-ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/html-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.87y5s8nnc8.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "87y5s8nnc8" + }, + { + "Name": "integrity", + "Value": "sha256-GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000281452294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11807" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZCiVcWD1AAh/l91kvEvMOM7ElyifCyBm0f+fLK2sSIA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/html-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GymNcoqLApubCXl+LR0K7Nl4v2V6ngHr1WFwrAmkZ74=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.4ulzeswtlt.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000424808836" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ulzeswtlt" + }, + { + "Name": "integrity", + "Value": "sha256-tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.4ulzeswtlt.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ulzeswtlt" + }, + { + "Name": "integrity", + "Value": "sha256-tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.4ulzeswtlt.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ulzeswtlt" + }, + { + "Name": "integrity", + "Value": "sha256-alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000424808836" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tKiNVtwl7pH2jB5QnHKfOHVzyLWsNf4Frvc0/EdXl9g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/javascript-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-alHaNtNBB5a/yQjvb0RBS3a214k6hj+gT9R5ZJEZSRo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.css", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.css", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000187195807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.phgapd1sl0.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000187195807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phgapd1sl0" + }, + { + "Name": "integrity", + "Value": "sha256-/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.phgapd1sl0.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phgapd1sl0" + }, + { + "Name": "integrity", + "Value": "sha256-/Y4V8rdvTd4r3G6U/fX8bweiPs7vhVAo13Q6nQIiN5o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.phgapd1sl0.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phgapd1sl0" + }, + { + "Name": "integrity", + "Value": "sha256-Ru6V7T0/T7xPoA93e2ZQ8IyHbgyk5h6PZolU77pLfUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.qss88tp377.css", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qss88tp377" + }, + { + "Name": "integrity", + "Value": "sha256-yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.qss88tp377.css", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qss88tp377" + }, + { + "Name": "integrity", + "Value": "sha256-yi9+Th865vJN6kUw0WidYEdIai8/4+cmPOpYi6UDCLo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/show-hint.qss88tp377.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qss88tp377" + }, + { + "Name": "integrity", + "Value": "sha256-Qc2KeelMR17BKscgB4kcWYMb1KsFqRe8hH2W2uaJFQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/show-hint.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.gl5qc5vn52.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000361663653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl5qc5vn52" + }, + { + "Name": "integrity", + "Value": "sha256-LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/sql-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.gl5qc5vn52.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl5qc5vn52" + }, + { + "Name": "integrity", + "Value": "sha256-LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/sql-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.gl5qc5vn52.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl5qc5vn52" + }, + { + "Name": "integrity", + "Value": "sha256-zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000361663653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LPGcGZMJLRzW/d2L7nUtt5cElaBzm+jAjFmG2jmohfs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/sql-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zrdXH1TB7/Lr4OB69XIgBeDjgSQzKJilcxDrVd7brMs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.6b7jfap20s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000547645126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1825" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6b7jfap20s" + }, + { + "Name": "integrity", + "Value": "sha256-wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/xml-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.6b7jfap20s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6b7jfap20s" + }, + { + "Name": "integrity", + "Value": "sha256-wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/xml-hint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.6b7jfap20s.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1825" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6b7jfap20s" + }, + { + "Name": "integrity", + "Value": "sha256-LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000547645126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1825" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wpJtHa6F59knW2Tbl8cM86MhaEdKyWJjk9xNt/jq6M8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/hint/xml-hint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1825" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LdVRW82isjRTQNJqwZBgcqfJunJSOOhfJMV4LyYrSKU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.e2t69tdm78.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001497005988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2t69tdm78" + }, + { + "Name": "integrity", + "Value": "sha256-WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.e2t69tdm78.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1513" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2t69tdm78" + }, + { + "Name": "integrity", + "Value": "sha256-WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.e2t69tdm78.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2t69tdm78" + }, + { + "Name": "integrity", + "Value": "sha256-6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001497005988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1513" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WppLAYG1ia2g8uuZhgW64tzkfcgV9x6Ipd+crCw08ew=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "667" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6ctl5I64OwcI1n4VJl/M89TdV03BPcjFL0kTiIEsK08=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.gxn98nck2k.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gxn98nck2k" + }, + { + "Name": "integrity", + "Value": "sha256-nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/css-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.gxn98nck2k.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1350" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gxn98nck2k" + }, + { + "Name": "integrity", + "Value": "sha256-nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/css-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.gxn98nck2k.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gxn98nck2k" + }, + { + "Name": "integrity", + "Value": "sha256-P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1350" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nJpzfuoCYM7kjNG01IQittY3s2mSSdWCGVh7hGoSvMc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/css-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P7JtSGdNzsOX2K47uswATNv6PJi2HS+ETO/8Vy4ZA6w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001153402537" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.qg9rzxw52s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001153402537" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9rzxw52s" + }, + { + "Name": "integrity", + "Value": "sha256-VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/html-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.qg9rzxw52s.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9rzxw52s" + }, + { + "Name": "integrity", + "Value": "sha256-VjBBQDX2eaXhs+5zBd8P6OQGU7h7ZThLKyEvCYGPtR8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/html-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/html-lint.qg9rzxw52s.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9rzxw52s" + }, + { + "Name": "integrity", + "Value": "sha256-iGi4+vf9w6t+1iejHAbTqHknn1fnoI5lVfJkDTU0hUc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/html-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.8scnum45uv.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001023541453" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8scnum45uv" + }, + { + "Name": "integrity", + "Value": "sha256-iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.8scnum45uv.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8scnum45uv" + }, + { + "Name": "integrity", + "Value": "sha256-iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.8scnum45uv.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8scnum45uv" + }, + { + "Name": "integrity", + "Value": "sha256-LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001023541453" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iOn2OLt2ARy2v5d2cq5spZFRQmDsdw8eEOLQnhMAztw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/javascript-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "976" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQDo/+mvikreMgkQdHU4lq3B30B8pPI23es5gV/f93k=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.mfc7k8t9ge.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfc7k8t9ge" + }, + { + "Name": "integrity", + "Value": "sha256-TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/json-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.mfc7k8t9ge.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfc7k8t9ge" + }, + { + "Name": "integrity", + "Value": "sha256-TgFYMIHIicvxFfqNfO9a7fbNQKiNfEEDJsFXUMWwciI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/json-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/json-lint.mfc7k8t9ge.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfc7k8t9ge" + }, + { + "Name": "integrity", + "Value": "sha256-S7wo435G+H5BeMseIaF3n7OcPV2LpPNOAzK2Auxc0i4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/json-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.46jl75a892.css", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000794912560" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "46jl75a892" + }, + { + "Name": "integrity", + "Value": "sha256-tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.46jl75a892.css", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2949" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "46jl75a892" + }, + { + "Name": "integrity", + "Value": "sha256-tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.46jl75a892.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "46jl75a892" + }, + { + "Name": "integrity", + "Value": "sha256-wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.4zarttzsf0.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000365497076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4zarttzsf0" + }, + { + "Name": "integrity", + "Value": "sha256-sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.4zarttzsf0.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4zarttzsf0" + }, + { + "Name": "integrity", + "Value": "sha256-sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.4zarttzsf0.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4zarttzsf0" + }, + { + "Name": "integrity", + "Value": "sha256-qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.css", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000794912560" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.css", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2949" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tHDutpjakF+YXZeSv3MniyOy+PRMwSG4iQfOiYNqaPM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wmen6KHCg/Hidd7071Ij9CjkFte9Ogb2jFOY5G9/JSw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000365497076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sI7TGOUALSzLtSRXOf2aEeVWRbNR6tloBJI9g8Ypc+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qMaubzaFjzOFerlWgC2rPbh8KQ/zNcJyjh6QK9tY1Lo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001503759398" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1296" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.p35z83ipo1.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001503759398" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p35z83ipo1" + }, + { + "Name": "integrity", + "Value": "sha256-lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.p35z83ipo1.js", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1296" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p35z83ipo1" + }, + { + "Name": "integrity", + "Value": "sha256-lVi1jmO1ttA6qmwt3/Ya68Fsj821ad+KvpZyoXmQV+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/lint/yaml-lint.p35z83ipo1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p35z83ipo1" + }, + { + "Name": "integrity", + "Value": "sha256-BwrVzOyeHFPF2ZijdVnWtfs/3704vj0Dh4CvDabrh9I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/lint/yaml-lint.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.8i2y6yvv04.js", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098755678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8i2y6yvv04" + }, + { + "Name": "integrity", + "Value": "sha256-MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.8i2y6yvv04.js", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "38913" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8i2y6yvv04" + }, + { + "Name": "integrity", + "Value": "sha256-MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.8i2y6yvv04.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8i2y6yvv04" + }, + { + "Name": "integrity", + "Value": "sha256-fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.css", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001040582726" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "960" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.css", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "960" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.js", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098755678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.js", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "38913" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MH+4c7FVxRwfJDAy+sbWhrkk/UheBx/bmUiGAbRT87A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fqMOaTzZL+M01strmxku/uJdmO+9auWCza+Ivoc8Vho=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.o6p68tvgem.css", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001040582726" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "960" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6p68tvgem" + }, + { + "Name": "integrity", + "Value": "sha256-AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.o6p68tvgem.css", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6p68tvgem" + }, + { + "Name": "integrity", + "Value": "sha256-AFGz6QSG4nduVxUgkbRearxkWRfUV5W/kV+d9thPq8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/merge/merge.o6p68tvgem.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/merge/merge.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "960" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6p68tvgem" + }, + { + "Name": "integrity", + "Value": "sha256-6aFn/+1IruG1NbTgsMfz/QIXIu/ZL6zGK5GrwuEysXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/merge/merge.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.uul5jfh1ps.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uul5jfh1ps" + }, + { + "Name": "integrity", + "Value": "sha256-GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/loadmode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.uul5jfh1ps.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uul5jfh1ps" + }, + { + "Name": "integrity", + "Value": "sha256-GiN+3SNWv7bO5/5vSpJZK8PqFgKwNmWjTy5sFzvcvfk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/loadmode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/loadmode.uul5jfh1ps.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uul5jfh1ps" + }, + { + "Name": "integrity", + "Value": "sha256-2aIkJkTOXCUJUHV09KwTZ5PMius9OZsURqFX3KTpMx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/loadmode.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.7v5v1ehbgn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000675219446" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7v5v1ehbgn" + }, + { + "Name": "integrity", + "Value": "sha256-c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.7v5v1ehbgn.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7v5v1ehbgn" + }, + { + "Name": "integrity", + "Value": "sha256-c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.7v5v1ehbgn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7v5v1ehbgn" + }, + { + "Name": "integrity", + "Value": "sha256-9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000675219446" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c5jdGm/LXxBAm3FNjA21o4limf2+VuY2Vgb4t+Lg6po=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FrY6sYED77S4P97wadyALW79zYfcPsb53HZFErxTwY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.fw96nj8sqs.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw96nj8sqs" + }, + { + "Name": "integrity", + "Value": "sha256-YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.fw96nj8sqs.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw96nj8sqs" + }, + { + "Name": "integrity", + "Value": "sha256-YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.fw96nj8sqs.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw96nj8sqs" + }, + { + "Name": "integrity", + "Value": "sha256-w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YWWiyo9OSRvq12biTzKh23LZo1czCz6+mKvMzqXMn7c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/multiplex_test.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w41nMf81GsibU69VuqdQ8ufkHfLsdunTUHaqAcr2FOo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000899280576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.shnna8x4ju.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000899280576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shnna8x4ju" + }, + { + "Name": "integrity", + "Value": "sha256-sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/overlay.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.shnna8x4ju.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shnna8x4ju" + }, + { + "Name": "integrity", + "Value": "sha256-sFALghu7tENbDsoXPg2KseATjeQONNqUrmVWIzUxpzI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/overlay.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/overlay.shnna8x4ju.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shnna8x4ju" + }, + { + "Name": "integrity", + "Value": "sha256-SOLexRkP5opj3EWRBKj2j6H3V4eooS76KNqM+T9PEkk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/overlay.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000419815281" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.t31wex4t0w.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000419815281" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t31wex4t0w" + }, + { + "Name": "integrity", + "Value": "sha256-Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/simple.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.t31wex4t0w.js", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t31wex4t0w" + }, + { + "Name": "integrity", + "Value": "sha256-Z8Ap47eqiGu1GxOMlFc0WUJ8DInZ7Xalsmcwmkv4LGY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/simple.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/mode/simple.t31wex4t0w.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/mode/simple.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t31wex4t0w" + }, + { + "Name": "integrity", + "Value": "sha256-rIBIVSSokjqw1ai8nDgPrysZGg8Ne6XxqeVWRx2eV+A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/mode/simple.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.f9n4c95sds.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001453488372" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f9n4c95sds" + }, + { + "Name": "integrity", + "Value": "sha256-PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/colorize.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.f9n4c95sds.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f9n4c95sds" + }, + { + "Name": "integrity", + "Value": "sha256-PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/colorize.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.f9n4c95sds.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f9n4c95sds" + }, + { + "Name": "integrity", + "Value": "sha256-/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001453488372" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PRHip+44r+euYGeQw+jQHfikgNEmGUdOndNs2RAvP4o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/colorize.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "687" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/p+wxryfD3yBCEuM4FTpmxctP/mcmzthueI1yJiX96A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.0vb6nau7va.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000263088661" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3800" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0vb6nau7va" + }, + { + "Name": "integrity", + "Value": "sha256-jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.0vb6nau7va.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0vb6nau7va" + }, + { + "Name": "integrity", + "Value": "sha256-jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.0vb6nau7va.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3800" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0vb6nau7va" + }, + { + "Name": "integrity", + "Value": "sha256-o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000263088661" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3800" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jAC7eAVtVBwXIdIu4PItRLiyqAMyrTAkNSrtMLNBOdY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3800" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o1co9dhOYjilzbnPdLBlixzna9dmB1ZiTxtiZ0YHwEU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000860585198" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.lxt7kj65jy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000860585198" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxt7kj65jy" + }, + { + "Name": "integrity", + "Value": "sha256-SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.lxt7kj65jy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxt7kj65jy" + }, + { + "Name": "integrity", + "Value": "sha256-SfOMg17K/wQ3lBUQVN84J3mVSW8Ld/GH0Obz2aEDG4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.lxt7kj65jy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxt7kj65jy" + }, + { + "Name": "integrity", + "Value": "sha256-DX+ULrsDqmmS8lEoem1mgVR26uLBp5nnDEKH7+FBzq4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000263782643" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.v5ht5ciqzi.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000263782643" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v5ht5ciqzi" + }, + { + "Name": "integrity", + "Value": "sha256-3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.v5ht5ciqzi.js", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v5ht5ciqzi" + }, + { + "Name": "integrity", + "Value": "sha256-3Y7eglRrKkq1po0OqhcUE0y+8v4fIJY1BYy5hYL4Kcs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/runmode/runmode.node.v5ht5ciqzi.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v5ht5ciqzi" + }, + { + "Name": "integrity", + "Value": "sha256-arEZKjPS4NpDnLsA0TKSS7HZ3zGES9De0EPIOp0Qyjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/runmode/runmode.node.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.1og8e89vmk.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000616903146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1og8e89vmk" + }, + { + "Name": "integrity", + "Value": "sha256-n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.1og8e89vmk.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4756" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1og8e89vmk" + }, + { + "Name": "integrity", + "Value": "sha256-n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.1og8e89vmk.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1og8e89vmk" + }, + { + "Name": "integrity", + "Value": "sha256-GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000616903146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4756" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n7smW+SAmlO6vGSWzuEExTrIicxS45W4Edc7mQcoPig=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GmqbNZKHSqSdOOp1XreSDOUsyiWZMvsqCy1v388akJM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.p7awges22h.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7awges22h" + }, + { + "Name": "integrity", + "Value": "sha256-S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.p7awges22h.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7awges22h" + }, + { + "Name": "integrity", + "Value": "sha256-S7yxalE5HRrU258PkeuM4nnPU7IRPm0CDRn04RYmesw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.p7awges22h.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7awges22h" + }, + { + "Name": "integrity", + "Value": "sha256-FNkkPpcsE7ZZdMGjk83x2YOB2lOmnvZ4S3kjYfYVg2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/scrollpastend.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000591715976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5615" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.jtt2j3c6ml.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000591715976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtt2j3c6ml" + }, + { + "Name": "integrity", + "Value": "sha256-id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.jtt2j3c6ml.js", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5615" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtt2j3c6ml" + }, + { + "Name": "integrity", + "Value": "sha256-id1S9zS9pcn+fFIWlyk7EfLJrawmk8kOmh0n+Isxkzk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.jtt2j3c6ml.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtt2j3c6ml" + }, + { + "Name": "integrity", + "Value": "sha256-HEBKwwXUyMsGvKj6xUBrN7V0eJ1GCgAT/+2yLcSAgs0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.z4ehtcy985.css", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z4ehtcy985" + }, + { + "Name": "integrity", + "Value": "sha256-066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.z4ehtcy985.css", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z4ehtcy985" + }, + { + "Name": "integrity", + "Value": "sha256-066vcbWdbztmvv4NwgVuLWEOPAt5x/Hjtr9mN+I1tlQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.z4ehtcy985.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z4ehtcy985" + }, + { + "Name": "integrity", + "Value": "sha256-+iFEgkwnazfI4TK22jbTGM+/R1kRFY/Q/Qg/gKIQA3M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.afhilzwyc6.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001030927835" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "969" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afhilzwyc6" + }, + { + "Name": "integrity", + "Value": "sha256-SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/jump-to-line.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.afhilzwyc6.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2194" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afhilzwyc6" + }, + { + "Name": "integrity", + "Value": "sha256-SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/jump-to-line.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.afhilzwyc6.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "969" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afhilzwyc6" + }, + { + "Name": "integrity", + "Value": "sha256-FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001030927835" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "969" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2194" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SrZpRoZf92WxiJdzUdXdY2i9V7+03jmNkABvSN5IdWo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/jump-to-line.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "969" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FcZmWoZnVtMjFBytylEScPlLX/Og8o2gq9Bok30bmJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.6fu2e9m8h5.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000480538203" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fu2e9m8h5" + }, + { + "Name": "integrity", + "Value": "sha256-gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/match-highlighter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.6fu2e9m8h5.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fu2e9m8h5" + }, + { + "Name": "integrity", + "Value": "sha256-gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/match-highlighter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.6fu2e9m8h5.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fu2e9m8h5" + }, + { + "Name": "integrity", + "Value": "sha256-anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000480538203" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gvg6QkU0YjMOaD3N74syaasl3724/UAJdOksE9BIO2M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/match-highlighter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-anXOJ4MHs+ndXL3kPooi1z5gdpwPSoZ9Q1p7oFLsSNE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.023eh4yzw6.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000780031201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "023eh4yzw6" + }, + { + "Name": "integrity", + "Value": "sha256-CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.023eh4yzw6.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3953" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "023eh4yzw6" + }, + { + "Name": "integrity", + "Value": "sha256-CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.023eh4yzw6.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "023eh4yzw6" + }, + { + "Name": "integrity", + "Value": "sha256-eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007142857143" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "139" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "139" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.gum8r199z0.css", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007142857143" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "139" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gum8r199z0" + }, + { + "Name": "integrity", + "Value": "sha256-WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.gum8r199z0.css", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gum8r199z0" + }, + { + "Name": "integrity", + "Value": "sha256-WGswWFwXPu+HkT36OwzeBnjNcF6+ictyDox9fYZ+DEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.gum8r199z0.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "139" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gum8r199z0" + }, + { + "Name": "integrity", + "Value": "sha256-kb7sbFEdbLymbdpmHhSNOaPEDD+CTWI2DwcXeT6TtVA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000780031201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3953" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CNhMhiq5sYG6tV8jsJeRP1FOeznQTHTjO7H57fRUvUE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eRtAx3AHj0e2eBs1QjFGFynsx4m0MTmu78BpMxou2C0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.3niyr4obmp.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326477310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3niyr4obmp" + }, + { + "Name": "integrity", + "Value": "sha256-IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/search.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.3niyr4obmp.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3niyr4obmp" + }, + { + "Name": "integrity", + "Value": "sha256-IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/search.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.3niyr4obmp.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3niyr4obmp" + }, + { + "Name": "integrity", + "Value": "sha256-tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/search.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326477310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IaKYtvKLfoe9C7JYGiZUs4zXceyguOuA3OwiTLAgRlM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/search.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/search.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tm4SgcdDHvwcu78l8o7IRri3m2Gfl9mTF6bERxFruNs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.a1spow2n4w.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321130379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a1spow2n4w" + }, + { + "Name": "integrity", + "Value": "sha256-0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/searchcursor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.a1spow2n4w.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a1spow2n4w" + }, + { + "Name": "integrity", + "Value": "sha256-0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/searchcursor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.a1spow2n4w.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a1spow2n4w" + }, + { + "Name": "integrity", + "Value": "sha256-GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321130379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.js", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0i3Yo7ASvynLG0fumjDege1VYEEXQ4bVKqPNbfrXs04=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/search/searchcursor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GiS0QeM5/XGo6LuClWfgs5vU+ur3pfLJ/Aeg6WOGnPk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001113585746" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.u4marbj1fw.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001113585746" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u4marbj1fw" + }, + { + "Name": "integrity", + "Value": "sha256-cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/active-line.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.u4marbj1fw.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u4marbj1fw" + }, + { + "Name": "integrity", + "Value": "sha256-cvqT0V+w1nW/5ij+BIeWiLyrLSB8wzhAc1av1ByZwbI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/active-line.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/active-line.u4marbj1fw.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u4marbj1fw" + }, + { + "Name": "integrity", + "Value": "sha256-546IRexGuQk8cmYNL13GD4EwZOOzmvIkP45EEus/NsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/active-line.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.dotyhvy8ft.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000768639508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dotyhvy8ft" + }, + { + "Name": "integrity", + "Value": "sha256-Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/mark-selection.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.dotyhvy8ft.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3966" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dotyhvy8ft" + }, + { + "Name": "integrity", + "Value": "sha256-Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/mark-selection.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.dotyhvy8ft.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dotyhvy8ft" + }, + { + "Name": "integrity", + "Value": "sha256-EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000768639508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3966" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q4hE45trDz21imrjXMWb5N73mKlW1rXWMDFnagHOHlA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/mark-selection.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EjX3HpZXr+lcJItS1G+yF0+syyPwTayh8kR0lH/0kM8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.d9hs4l4fsy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000942507069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d9hs4l4fsy" + }, + { + "Name": "integrity", + "Value": "sha256-n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.d9hs4l4fsy.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d9hs4l4fsy" + }, + { + "Name": "integrity", + "Value": "sha256-n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.d9hs4l4fsy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d9hs4l4fsy" + }, + { + "Name": "integrity", + "Value": "sha256-NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000942507069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n8FfmjUimBLJGq0H0+DXjNn2baftXsjce9daM2Mdv7A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/selection/selection-pointer.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NPdRYqJkHE5deIPBTDUb8WkBpPPNu4zIK23la1k96Oo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.7js79npbol.css", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001610305958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7js79npbol" + }, + { + "Name": "integrity", + "Value": "sha256-zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.7js79npbol.css", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1959" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7js79npbol" + }, + { + "Name": "integrity", + "Value": "sha256-zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.7js79npbol.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7js79npbol" + }, + { + "Name": "integrity", + "Value": "sha256-Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.css", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001610305958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.css", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1959" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zb5dbhd8DHyOKJzWUNwmi5djzleA0q5LkIDBGgTpZfg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.css.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Em1adPDBpYBRmcVqCtzuZQ7/RN9L1TwDtTYnQcC/qak=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.esfratvip3.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000129516902" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "esfratvip3" + }, + { + "Name": "integrity", + "Value": "sha256-UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.esfratvip3.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25846" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "esfratvip3" + }, + { + "Name": "integrity", + "Value": "sha256-UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.esfratvip3.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "esfratvip3" + }, + { + "Name": "integrity", + "Value": "sha256-Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/tern.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000129516902" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25846" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UimvaYcmkXTg37bYzFLsDHnqF1l2Buo50ojqYuDyl4E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/tern.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/tern.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ujr3eJusXRFPPBDQoZTvPqDIPCODeJw+W9asw+ALvnI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.36wy39bo44.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36wy39bo44" + }, + { + "Name": "integrity", + "Value": "sha256-Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/worker.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.36wy39bo44.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36wy39bo44" + }, + { + "Name": "integrity", + "Value": "sha256-Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/worker.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.36wy39bo44.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36wy39bo44" + }, + { + "Name": "integrity", + "Value": "sha256-7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/tern/worker.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.js", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wy51tfD7dGl92dpiktRCklCRyFpSryvV46/dx/WpoO0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/tern/worker.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/tern/worker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7KcB/hS0FAFn8dRzZ6wlHDLMCPy5AcTaSJpwJBaCNkE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000512820513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.yqyt915fe2.js", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000512820513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yqyt915fe2" + }, + { + "Name": "integrity", + "Value": "sha256-1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.yqyt915fe2.js", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yqyt915fe2" + }, + { + "Name": "integrity", + "Value": "sha256-1k0i3riCgB/SQPzoeP6zRxAhd89+KigeCk02TkTfs5w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/addon/wrap/hardwrap.yqyt915fe2.js.gz", + "AssetFile": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yqyt915fe2" + }, + { + "Name": "integrity", + "Value": "sha256-Kexjl+2TOyYlRy7/fr7yq2XJ6T/4yMi9e9Enqa5ykAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/addon/wrap/hardwrap.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.4bxx4k1bjh.js", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009399468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bxx4k1bjh" + }, + { + "Name": "integrity", + "Value": "sha256-4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.4bxx4k1bjh.js", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "408095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bxx4k1bjh" + }, + { + "Name": "integrity", + "Value": "sha256-4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.4bxx4k1bjh.js.gz", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4bxx4k1bjh" + }, + { + "Name": "integrity", + "Value": "sha256-++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.css", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000390015601" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.css", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9072" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.css.gz", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.js", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009399468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.js", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "408095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4EpWC5gJORdhjsEqxeCL+G06mn+e+s/nAqftjojB0BQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.js.gz", + "AssetFile": "adminlte/plugins/codemirror/codemirror.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "106388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-++Mg+2allroK1P1z/ak6yuTMHwGbJFtBTMC2y7imx6g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.y79s91zboh.css", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000390015601" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y79s91zboh" + }, + { + "Name": "integrity", + "Value": "sha256-rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.y79s91zboh.css", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9072" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y79s91zboh" + }, + { + "Name": "integrity", + "Value": "sha256-rlo9m5CHp75k0XaX7MW5Lz1rwFyI1dkLxm7GzMTexro=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/codemirror.y79s91zboh.css.gz", + "AssetFile": "adminlte/plugins/codemirror/codemirror.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y79s91zboh" + }, + { + "Name": "integrity", + "Value": "sha256-XL7xU0/ehbbzWG9eYV5PJiV7uMKdz24wN7upNcNdDMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/codemirror.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000242895312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.s4p5a5jloe.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000242895312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4p5a5jloe" + }, + { + "Name": "integrity", + "Value": "sha256-fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/emacs.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.s4p5a5jloe.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4p5a5jloe" + }, + { + "Name": "integrity", + "Value": "sha256-fPwCT4aV2i9GQ+S7IeQlJNvahHfv0WhzvHYL2cS1drk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/emacs.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/emacs.s4p5a5jloe.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/emacs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4p5a5jloe" + }, + { + "Name": "integrity", + "Value": "sha256-s0lzDnpuFUoHrOhjF3VQA78Fc9/uVKzxozO127iUWAg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/emacs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.cme95c8f7d.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000162575191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cme95c8f7d" + }, + { + "Name": "integrity", + "Value": "sha256-RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/sublime.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.cme95c8f7d.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27412" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cme95c8f7d" + }, + { + "Name": "integrity", + "Value": "sha256-RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/sublime.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.cme95c8f7d.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cme95c8f7d" + }, + { + "Name": "integrity", + "Value": "sha256-mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/sublime.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000162575191" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "27412" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RMfvSb6896sa6xXb62VR9n+1Hk/+XZva9f25LRNk0PE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/sublime.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/sublime.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mXXTs+/Xe4RT/1Fn0pJgB64kbFkpi+VYmHk5/N5YrXs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019621694" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "230356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.tk11grwjo1.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019621694" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tk11grwjo1" + }, + { + "Name": "integrity", + "Value": "sha256-wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/vim.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.tk11grwjo1.js", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "230356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tk11grwjo1" + }, + { + "Name": "integrity", + "Value": "sha256-wyWp/ANtYOfUGNeKbcoNHBRw9IFWdHYoOCbeSiq3j3o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/vim.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/keymap/vim.tk11grwjo1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/keymap/vim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tk11grwjo1" + }, + { + "Name": "integrity", + "Value": "sha256-94Q/z5ZdBNunLmn0jZe6Lw72k+6goLH3lcEwZFjX4dE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/keymap/vim.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000562429696" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4911" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.xmwmmn8raj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000562429696" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xmwmmn8raj" + }, + { + "Name": "integrity", + "Value": "sha256-R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/apl/apl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.xmwmmn8raj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4911" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xmwmmn8raj" + }, + { + "Name": "integrity", + "Value": "sha256-R98XLVSI6XiGdiPQcqlBpT8YzC6EI/jM81rmR/0mH14=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/apl/apl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/apl/apl.xmwmmn8raj.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/apl/apl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xmwmmn8raj" + }, + { + "Name": "integrity", + "Value": "sha256-xMz4KbWpAQY/IRlVET54Zv4HYCDvWNbEnhdZyFQaNu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/apl/apl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001240694789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.q20aymbkyq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001240694789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q20aymbkyq" + }, + { + "Name": "integrity", + "Value": "sha256-4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.q20aymbkyq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q20aymbkyq" + }, + { + "Name": "integrity", + "Value": "sha256-4kiVOSwPewcvKWVaWSHnCuE09w1ztjLHZHFOnIoL3i8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.q20aymbkyq.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q20aymbkyq" + }, + { + "Name": "integrity", + "Value": "sha256-HKeApQp3dKuBGGoc1fqwi6aoBMXeUzWRtDkb03M0L2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000374251497" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7940" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.m8kpn4c7bx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000374251497" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m8kpn4c7bx" + }, + { + "Name": "integrity", + "Value": "sha256-trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.m8kpn4c7bx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7940" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m8kpn4c7bx" + }, + { + "Name": "integrity", + "Value": "sha256-trnxsj/qflsM+FqkffpRcNJU0jb/nsN4MxOhZyakQj4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asn.1/asn.1.m8kpn4c7bx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m8kpn4c7bx" + }, + { + "Name": "integrity", + "Value": "sha256-+5txMfadYV2AuideS2gHAMXljQK9wUNGlTb+0CBUJjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asn.1/asn.1.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.5te24s5zqs.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383729854" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5te24s5zqs" + }, + { + "Name": "integrity", + "Value": "sha256-h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.5te24s5zqs.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5te24s5zqs" + }, + { + "Name": "integrity", + "Value": "sha256-h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.5te24s5zqs.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5te24s5zqs" + }, + { + "Name": "integrity", + "Value": "sha256-MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383729854" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h8RFwaUH/7PMFAsiMNaeNUolWKWYnzfr42XdRPko0SI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/asterisk/asterisk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MbAeag7LlP43GbuXTIVSEZPIyo9MxKOT61uJ5npeaGk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001228501229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.nlqyipsovw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001228501229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlqyipsovw" + }, + { + "Name": "integrity", + "Value": "sha256-K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.nlqyipsovw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlqyipsovw" + }, + { + "Name": "integrity", + "Value": "sha256-K9FKk5/5ALxeNUiS8qSClAaS2IBJRtF0Er5O391ufts=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.nlqyipsovw.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlqyipsovw" + }, + { + "Name": "integrity", + "Value": "sha256-27bilu3snsW9l9SRAX33yhnxdFEW5hly+xJoHUGugek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102933608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "37970" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.ow0kk1z2c1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102933608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ow0kk1z2c1" + }, + { + "Name": "integrity", + "Value": "sha256-mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clike/clike.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.ow0kk1z2c1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37970" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ow0kk1z2c1" + }, + { + "Name": "integrity", + "Value": "sha256-mCl1+THe6mR+aOJwuekcZsKYSLJuLjTYbVBDKJ8e0FE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clike/clike.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clike/clike.ow0kk1z2c1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/clike/clike.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ow0kk1z2c1" + }, + { + "Name": "integrity", + "Value": "sha256-1RnX/yGD+ElmwiTV8pOGHzmjo5I3+X12CpQKczTNBe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clike/clike.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.9agunkxhgd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000197355437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9agunkxhgd" + }, + { + "Name": "integrity", + "Value": "sha256-8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clojure/clojure.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.9agunkxhgd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9agunkxhgd" + }, + { + "Name": "integrity", + "Value": "sha256-8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clojure/clojure.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.9agunkxhgd.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9agunkxhgd" + }, + { + "Name": "integrity", + "Value": "sha256-3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000197355437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.js", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8USPb3KXQaljsjbvVmbGNv+oH+JtUe9o2vMCMNTBXZg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/clojure/clojure.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3NKo8DDOS6bji/mNQ+Wpuofo1PX/4KeXl9SsZeorHQc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.22h0ftdhvn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000979431929" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22h0ftdhvn" + }, + { + "Name": "integrity", + "Value": "sha256-ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cmake/cmake.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.22h0ftdhvn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2698" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22h0ftdhvn" + }, + { + "Name": "integrity", + "Value": "sha256-ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cmake/cmake.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.22h0ftdhvn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22h0ftdhvn" + }, + { + "Name": "integrity", + "Value": "sha256-EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000979431929" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2698" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ppbZfTUHlRr8MHbJPMTwusUn5Ul49hXLgwF1lfpCqOA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cmake/cmake.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EfCFMu9Xe8oktQedma47lVwD1LuFq3r7POylVkQZLc0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.gyz8n6uibm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000256541816" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyz8n6uibm" + }, + { + "Name": "integrity", + "Value": "sha256-+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cobol/cobol.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.gyz8n6uibm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyz8n6uibm" + }, + { + "Name": "integrity", + "Value": "sha256-+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cobol/cobol.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.gyz8n6uibm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyz8n6uibm" + }, + { + "Name": "integrity", + "Value": "sha256-4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000256541816" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+OjkPQDzTErXI1As1woCFGHdpu3vrWOlRIAbnpmbi+s=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cobol/cobol.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4ELUwOQ5PpTPahUrExmq32Y0/NLkE6koHQzJqKE4OIg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.29qdgfn1rj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341530055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29qdgfn1rj" + }, + { + "Name": "integrity", + "Value": "sha256-JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.29qdgfn1rj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29qdgfn1rj" + }, + { + "Name": "integrity", + "Value": "sha256-JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.29qdgfn1rj.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29qdgfn1rj" + }, + { + "Name": "integrity", + "Value": "sha256-GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341530055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JiKjCGORGToyWmxvAT18MOI8gGfVVAqTs1fZxt/Q0ww=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GJJBdck719uJa69+qdzc+cOuZqlWgJU+eCoqjvvd8gY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000625390869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.nodg4ckhq0.js", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000625390869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nodg4ckhq0" + }, + { + "Name": "integrity", + "Value": "sha256-R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.nodg4ckhq0.js", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nodg4ckhq0" + }, + { + "Name": "integrity", + "Value": "sha256-R13Ly2VkbidFsKkEJ7RLEJREDhV3O/CL09lt6tdhNoA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.nodg4ckhq0.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nodg4ckhq0" + }, + { + "Name": "integrity", + "Value": "sha256-kS41zAc535XB+7cScIyM8aTX119nSu0OYJtaDYe+WJQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.dz0mzbg72o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326797386" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dz0mzbg72o" + }, + { + "Name": "integrity", + "Value": "sha256-eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/crystal/crystal.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.dz0mzbg72o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13261" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dz0mzbg72o" + }, + { + "Name": "integrity", + "Value": "sha256-eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/crystal/crystal.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.dz0mzbg72o.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dz0mzbg72o" + }, + { + "Name": "integrity", + "Value": "sha256-idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.js", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326797386" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.js", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13261" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eX3sdxUP+XJC+cXvUp0iteQ4w/9DaBqeOBQDFcNa4yI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/crystal/crystal.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-idTl+rVZuvsQGUzIWuSbkrF/R4imTvWljcL1RsLtpIU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.fssqv7tso4.js", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000099750623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fssqv7tso4" + }, + { + "Name": "integrity", + "Value": "sha256-P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/css/css.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.fssqv7tso4.js", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "41288" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fssqv7tso4" + }, + { + "Name": "integrity", + "Value": "sha256-P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/css/css.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.fssqv7tso4.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fssqv7tso4" + }, + { + "Name": "integrity", + "Value": "sha256-Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/css/css.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.js", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000099750623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.js", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "41288" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P99j3Wamo4BKHh9ObKp8Vh2XyIk4T9M86xBb1gRlegc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/css/css.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/css/css.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y1QK5fvlgr78VCv0USvcwFtSV8cSv7UHMGToijsvhvU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.i087io9icm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000417188152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i087io9icm" + }, + { + "Name": "integrity", + "Value": "sha256-rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cypher/cypher.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.i087io9icm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7258" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i087io9icm" + }, + { + "Name": "integrity", + "Value": "sha256-rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cypher/cypher.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.i087io9icm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i087io9icm" + }, + { + "Name": "integrity", + "Value": "sha256-LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000417188152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.js", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7258" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rhmC05PQ+EPer+NhzD7MJp56xnYWjl7VhiStmgsLZ3U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/cypher/cypher.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LP9sICBbntx07TzMX3KvgFcYOqAm4VsTA/ROqjZsWjA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.h3854yp0gy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000420344683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2378" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3854yp0gy" + }, + { + "Name": "integrity", + "Value": "sha256-PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/d/d.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.h3854yp0gy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3854yp0gy" + }, + { + "Name": "integrity", + "Value": "sha256-PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/d/d.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.h3854yp0gy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2378" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3854yp0gy" + }, + { + "Name": "integrity", + "Value": "sha256-bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/d/d.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.js", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000420344683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2378" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.js", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZTEAH/BK6ZkNUs82hTe6f4odqVuOPsXrxlhDJQULEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/d/d.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/d/d.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2378" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bFJNdDJDxda4ts5sAGLdHCs9Roj9bPBOv7tJDBv3Z6A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000549450549" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.kq2yankc1u.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000549450549" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2yankc1u" + }, + { + "Name": "integrity", + "Value": "sha256-pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dart/dart.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.kq2yankc1u.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2yankc1u" + }, + { + "Name": "integrity", + "Value": "sha256-pHeBGRQ6Si+kK0RoaIbEui7jdUkbHjWRgNTogCCZsx8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dart/dart.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dart/dart.kq2yankc1u.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dart/dart.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2yankc1u" + }, + { + "Name": "integrity", + "Value": "sha256-qbFTQWqbTLOw+7z4jibMj97IYtmaIn4lDGYfgISQdac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dart/dart.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.c21j641emq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001745200698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c21j641emq" + }, + { + "Name": "integrity", + "Value": "sha256-3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/diff/diff.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.c21j641emq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1186" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c21j641emq" + }, + { + "Name": "integrity", + "Value": "sha256-3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/diff/diff.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.c21j641emq.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c21j641emq" + }, + { + "Name": "integrity", + "Value": "sha256-ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/diff/diff.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.js", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001745200698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.js", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1186" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3I2Zi0YxIYnWAzYupX4C8RXXumC9+BGDPzaghaSbh5Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/diff/diff.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/diff/diff.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ns7CwVqMOQeXZCYvoOxm+raJJENo/O5554ShDrXSlok=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.c1jkx00e2n.js", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000365230095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c1jkx00e2n" + }, + { + "Name": "integrity", + "Value": "sha256-YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/django/django.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.c1jkx00e2n.js", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c1jkx00e2n" + }, + { + "Name": "integrity", + "Value": "sha256-YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/django/django.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.c1jkx00e2n.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c1jkx00e2n" + }, + { + "Name": "integrity", + "Value": "sha256-5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/django/django.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.js", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000365230095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.js", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YN4RiOyEpLttzf2A2+MAHhNKWKxetVzQf9hkUMgLq/4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/django/django.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/django/django.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5ID7Zj8zJtVjx38xvYE0xoXcXoLTAD1bJHDIX+6VRpE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000820344545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4950" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.nux7u5yeym.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000820344545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nux7u5yeym" + }, + { + "Name": "integrity", + "Value": "sha256-4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.nux7u5yeym.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4950" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nux7u5yeym" + }, + { + "Name": "integrity", + "Value": "sha256-4aayIP5Jc1DZ299W22w6oqKWw8axcx+NbG0Q1cNKVwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.nux7u5yeym.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nux7u5yeym" + }, + { + "Name": "integrity", + "Value": "sha256-2Jnu6F+m0eZA0zsRW0i3hw92pFS3hovQTu6/RUAKRQ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.902b10jlrk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000651465798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "902b10jlrk" + }, + { + "Name": "integrity", + "Value": "sha256-FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dtd/dtd.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.902b10jlrk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4955" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "902b10jlrk" + }, + { + "Name": "integrity", + "Value": "sha256-FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dtd/dtd.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.902b10jlrk.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "902b10jlrk" + }, + { + "Name": "integrity", + "Value": "sha256-FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000651465798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4955" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FxCK9+ZaLw+kaiotJOxQKmwunR34EDrESfOzpwEGrMU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dtd/dtd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FdPleF+mLOXyCMxLF65lkMOMVOdAu52alIR0I2uDgYM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.bk1k1az2ic.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000345184674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bk1k1az2ic" + }, + { + "Name": "integrity", + "Value": "sha256-FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dylan/dylan.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.bk1k1az2ic.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bk1k1az2ic" + }, + { + "Name": "integrity", + "Value": "sha256-FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dylan/dylan.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.bk1k1az2ic.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bk1k1az2ic" + }, + { + "Name": "integrity", + "Value": "sha256-FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000345184674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.js", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10465" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FQKQx0AC1y2xhpmA2rNEw7PDIv8iFjbJOa1c71QlbGM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/dylan/dylan.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FJWDm0bIfkrebFOe7QnWvdcVtzsSI0n/mf8T+Y39VWc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.8hdxe2wzzn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000638977636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hdxe2wzzn" + }, + { + "Name": "integrity", + "Value": "sha256-fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.8hdxe2wzzn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hdxe2wzzn" + }, + { + "Name": "integrity", + "Value": "sha256-fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.8hdxe2wzzn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8hdxe2wzzn" + }, + { + "Name": "integrity", + "Value": "sha256-tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000638977636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fJinORIv4CtAHgPGFDZRa1OMQ4AWtzU9127i9Ug424U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ebnf/ebnf.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tqPV836wEi4fRPt97n1RKuLWUfpmySc15vFxX/bAbkk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330578512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.qg2edxni8n.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330578512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg2edxni8n" + }, + { + "Name": "integrity", + "Value": "sha256-BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ecl/ecl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.qg2edxni8n.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg2edxni8n" + }, + { + "Name": "integrity", + "Value": "sha256-BrtKxAWuTCGFmK3YFBCBbQRsHQDTpVedKC0VbkHLlgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ecl/ecl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ecl/ecl.qg2edxni8n.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3024" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg2edxni8n" + }, + { + "Name": "integrity", + "Value": "sha256-TKllkXanfF63LI0xrk/LI53rVbgPPcGmYNVkWX65bc8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ecl/ecl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.5teddvkaa5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000726744186" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5teddvkaa5" + }, + { + "Name": "integrity", + "Value": "sha256-x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.5teddvkaa5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3905" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5teddvkaa5" + }, + { + "Name": "integrity", + "Value": "sha256-x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.5teddvkaa5.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5teddvkaa5" + }, + { + "Name": "integrity", + "Value": "sha256-57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000726744186" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3905" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x6p1vmZWyg/oCKVB9m+8/5r2PpFHf/3sIjeOCzxwM40=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/eiffel/eiffel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-57xy+JA0nuAy43BWlNDHJUwILETXF6iRHNvz4J6n7hg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000691085003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.qggif0y6o6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000691085003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qggif0y6o6" + }, + { + "Name": "integrity", + "Value": "sha256-2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/elm/elm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.qggif0y6o6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qggif0y6o6" + }, + { + "Name": "integrity", + "Value": "sha256-2jKziQFtFYJyjd6zWxl6p6Oa4MgUkCk5gnpA1dRyyCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/elm/elm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/elm/elm.qggif0y6o6.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/elm/elm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qggif0y6o6" + }, + { + "Name": "integrity", + "Value": "sha256-6JhVbWb2Uw8/ZUs+khQSn5SG5ZxmnjMfyEE0Omf/bAE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/elm/elm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.ccej1jde1t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000199362041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccej1jde1t" + }, + { + "Name": "integrity", + "Value": "sha256-pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/erlang/erlang.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.ccej1jde1t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19493" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccej1jde1t" + }, + { + "Name": "integrity", + "Value": "sha256-pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/erlang/erlang.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.ccej1jde1t.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccej1jde1t" + }, + { + "Name": "integrity", + "Value": "sha256-6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.js", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000199362041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.js", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19493" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pBPe5WJVT+Ci7VBpk23svA94ZKwIQ60vmj5dFf116hk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/erlang/erlang.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5015" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6W2D7syTY3GKt/4cW09Aur7xzdNsZVRpTMcbCpAqMmI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.4nopqwdi44.js", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000766283525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4nopqwdi44" + }, + { + "Name": "integrity", + "Value": "sha256-AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/factor/factor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.4nopqwdi44.js", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4nopqwdi44" + }, + { + "Name": "integrity", + "Value": "sha256-AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/factor/factor.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.4nopqwdi44.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4nopqwdi44" + }, + { + "Name": "integrity", + "Value": "sha256-zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/factor/factor.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.js", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000766283525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.js", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AHNpvRK7B+wd2Dh1xrPuWk4IMmPlk6Tf7t5IZ67GJe4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/factor/factor.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/factor/factor.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zhIKxxZiBhV4/nEZgaMEJv0VwyjhYb+XuwZHBJfMrKY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000642260758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.nu61bnt23s.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000642260758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nu61bnt23s" + }, + { + "Name": "integrity", + "Value": "sha256-ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fcl/fcl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.nu61bnt23s.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nu61bnt23s" + }, + { + "Name": "integrity", + "Value": "sha256-ETCsNAWBT0iXp3D5PbR0NmoFHtYIs8flrXTMx68zcuM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fcl/fcl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fcl/fcl.nu61bnt23s.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nu61bnt23s" + }, + { + "Name": "integrity", + "Value": "sha256-v4HnON1yizVG5sw8oT1fZ0gf4J+xobHgj1I59X4L6LA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fcl/fcl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.b3wcpmzmww.js", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000516795866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3wcpmzmww" + }, + { + "Name": "integrity", + "Value": "sha256-iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/forth/forth.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.b3wcpmzmww.js", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3wcpmzmww" + }, + { + "Name": "integrity", + "Value": "sha256-iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/forth/forth.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.b3wcpmzmww.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3wcpmzmww" + }, + { + "Name": "integrity", + "Value": "sha256-pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/forth/forth.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.js", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000516795866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.js", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iVFjCOJbezr3uUmfbvwKVpl2gZi9Q7AZZEVRV72mfjA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/forth/forth.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/forth/forth.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pOZu/KMbxbACeNs2Ob0Gt2kNKeyP3Q0NeM1dt3jnEpk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.f537f746kc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000362976407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f537f746kc" + }, + { + "Name": "integrity", + "Value": "sha256-s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fortran/fortran.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.f537f746kc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f537f746kc" + }, + { + "Name": "integrity", + "Value": "sha256-s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fortran/fortran.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.f537f746kc.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f537f746kc" + }, + { + "Name": "integrity", + "Value": "sha256-1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000362976407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.js", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8875" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s7ZVCJy3DFEpqR0OKwRg7F6qhi83UDaVCQXnQGWX9/M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/fortran/fortran.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1lblsSLZQk1bWP97dPOTINZSmt3XdyWxHsyyozZdtds=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.hz29xqk1ek.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz29xqk1ek" + }, + { + "Name": "integrity", + "Value": "sha256-XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gas/gas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.hz29xqk1ek.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz29xqk1ek" + }, + { + "Name": "integrity", + "Value": "sha256-XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gas/gas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.hz29xqk1ek.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz29xqk1ek" + }, + { + "Name": "integrity", + "Value": "sha256-CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gas/gas.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XWAyILg2cjgxfXNmWOvORFVDu9X08HSQLG2wQvB4qwk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gas/gas.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gas/gas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CwPVTiwVl4lYKpy6ym5r/sJVELW3SDgfFp/z8SVShRg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.bgj4ypww0y.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000453514739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgj4ypww0y" + }, + { + "Name": "integrity", + "Value": "sha256-e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gfm/gfm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.bgj4ypww0y.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgj4ypww0y" + }, + { + "Name": "integrity", + "Value": "sha256-e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gfm/gfm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.bgj4ypww0y.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgj4ypww0y" + }, + { + "Name": "integrity", + "Value": "sha256-SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000453514739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e6FGB82iidl1XhLTKmD/n26cj+lf4KYlwHhS6Jn+1nU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gfm/gfm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SqnWhJbrKV/ZzNYYX+D9O4V5tOS23xVxACIGKCRlu+w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.9eyedc9w6a.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000172205958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9eyedc9w6a" + }, + { + "Name": "integrity", + "Value": "sha256-X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.9eyedc9w6a.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9eyedc9w6a" + }, + { + "Name": "integrity", + "Value": "sha256-X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.9eyedc9w6a.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9eyedc9w6a" + }, + { + "Name": "integrity", + "Value": "sha256-A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000172205958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X+3aMk11pzShIZd203cIWPFrrox8USpP7hwSDwuVsS4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/gherkin/gherkin.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A7wg71/duf3eE4MW1ZZTGW/EHCbDXhYKtrAqBX49fnw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.js", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000509424350" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.js", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.rjx9z3g2wp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000509424350" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjx9z3g2wp" + }, + { + "Name": "integrity", + "Value": "sha256-F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/go/go.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.rjx9z3g2wp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjx9z3g2wp" + }, + { + "Name": "integrity", + "Value": "sha256-F4HJJNXNQlEVwawbHP9v4NFbxEFGSeulnnTD44CvJCI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/go/go.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/go/go.rjx9z3g2wp.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/go/go.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjx9z3g2wp" + }, + { + "Name": "integrity", + "Value": "sha256-cOTkPyJcen++rO+cjjLQkeu0kpaxS8kpqglK9/LILeU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/go/go.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.2ae3rhuc31.js", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000409836066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ae3rhuc31" + }, + { + "Name": "integrity", + "Value": "sha256-CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/groovy/groovy.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.2ae3rhuc31.js", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ae3rhuc31" + }, + { + "Name": "integrity", + "Value": "sha256-CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/groovy/groovy.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.2ae3rhuc31.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ae3rhuc31" + }, + { + "Name": "integrity", + "Value": "sha256-yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000409836066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CipBOugJrGMjm5Evq6ChGCSW2GAj7MlstUEgfWRCRe4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/groovy/groovy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yivchZF2jGA4YFxfmDIBEuQUstrYFCA0Glom5FXnA7E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000638162093" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.qnd7h8go9o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000638162093" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnd7h8go9o" + }, + { + "Name": "integrity", + "Value": "sha256-5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haml/haml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.qnd7h8go9o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnd7h8go9o" + }, + { + "Name": "integrity", + "Value": "sha256-5hF+1GxP4+dEJOg00LFo/DMs8yD1J4sBcqBXMdLU7r8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haml/haml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haml/haml.qnd7h8go9o.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haml/haml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1566" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qnd7h8go9o" + }, + { + "Name": "integrity", + "Value": "sha256-uwWq8MoHHw79zWX9/79FRDg7aT3zafvM99WU0Ydo5GY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haml/haml.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001108647450" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "901" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2476" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "901" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.w74g6e8i4t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001108647450" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "901" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w74g6e8i4t" + }, + { + "Name": "integrity", + "Value": "sha256-pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.w74g6e8i4t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2476" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w74g6e8i4t" + }, + { + "Name": "integrity", + "Value": "sha256-pMhUdtQMPQ+ZhRPKyMiz/wLg/CW+xpaqzA3kTp+HHfI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/handlebars/handlebars.w74g6e8i4t.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "901" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w74g6e8i4t" + }, + { + "Name": "integrity", + "Value": "sha256-trxgTdljdisb7iOYm6VE5XeUygMLuCz+J0jfdz3YQbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/handlebars/handlebars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.7vnfdikkh5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vnfdikkh5" + }, + { + "Name": "integrity", + "Value": "sha256-kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.7vnfdikkh5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vnfdikkh5" + }, + { + "Name": "integrity", + "Value": "sha256-kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.7vnfdikkh5.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vnfdikkh5" + }, + { + "Name": "integrity", + "Value": "sha256-r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kxtXOFkGcPoBm1GUWZBXezq8NQseLXsN896nSpSTHY0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r6lcEmKtLnk4Wi2qsEugGsAhSeIER+QyKqhocX3AGbA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.dze6c9wykj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000366434591" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dze6c9wykj" + }, + { + "Name": "integrity", + "Value": "sha256-p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell/haskell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.dze6c9wykj.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dze6c9wykj" + }, + { + "Name": "integrity", + "Value": "sha256-p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell/haskell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.dze6c9wykj.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dze6c9wykj" + }, + { + "Name": "integrity", + "Value": "sha256-ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000366434591" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p57BYV8jKjH3ENKsMAnQRdZy88ar/HdqyKuJK8itKLU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haskell/haskell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ptUt6ySl011RozpdzGrZnhuDxDIKPBV/FLQAJAKwuNU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000223313979" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.rgkezed8q1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000223313979" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgkezed8q1" + }, + { + "Name": "integrity", + "Value": "sha256-Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haxe/haxe.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.rgkezed8q1.js", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgkezed8q1" + }, + { + "Name": "integrity", + "Value": "sha256-Gyr0BMYaR9cQ6HrEApK5h++HPLyMbLGh2IwByiOqWJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haxe/haxe.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/haxe/haxe.rgkezed8q1.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgkezed8q1" + }, + { + "Name": "integrity", + "Value": "sha256-jG2ufys1CRiKFYcCe4wZBmLYwsSqcMNU11GQxfT4sqo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/haxe/haxe.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.olcbh201q3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olcbh201q3" + }, + { + "Name": "integrity", + "Value": "sha256-dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.olcbh201q3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olcbh201q3" + }, + { + "Name": "integrity", + "Value": "sha256-dLIqUa8e7LLt2DvXpZQeyhAtLUQlF4FLZGGt8igtP1M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.olcbh201q3.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olcbh201q3" + }, + { + "Name": "integrity", + "Value": "sha256-TKd3VkGcIfJ3q/TZhZB+S1uWgUuD3aweL21ud17a+cw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.dzponal23g.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000533617930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzponal23g" + }, + { + "Name": "integrity", + "Value": "sha256-d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.dzponal23g.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5837" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzponal23g" + }, + { + "Name": "integrity", + "Value": "sha256-d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.dzponal23g.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzponal23g" + }, + { + "Name": "integrity", + "Value": "sha256-u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000533617930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5837" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7ca4Ym6zJH7lmlMFn3lCjKsPHPgRZmefmJGpNaYxTQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1873" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u9qujPN+5RWDEpweKF34EgBz6Yn/bzlmUPfAn+iFFgc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.jevqpupksx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001107419712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jevqpupksx" + }, + { + "Name": "integrity", + "Value": "sha256-e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/http/http.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.jevqpupksx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2909" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jevqpupksx" + }, + { + "Name": "integrity", + "Value": "sha256-e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/http/http.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.jevqpupksx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jevqpupksx" + }, + { + "Name": "integrity", + "Value": "sha256-7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/http/http.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.js", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001107419712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.js", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2909" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e6IYtCrdkiJ6OhmeX37T7pp9kp4jMWB5YtNLWIjhzXg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/http/http.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/http/http.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7MjGg6mbg9d7/c9urxdY0nUWWN5E7hv8oFzx/1jUE54=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.3146ye9aqe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000185735513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3146ye9aqe" + }, + { + "Name": "integrity", + "Value": "sha256-58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/idl/idl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.3146ye9aqe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3146ye9aqe" + }, + { + "Name": "integrity", + "Value": "sha256-58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/idl/idl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.3146ye9aqe.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3146ye9aqe" + }, + { + "Name": "integrity", + "Value": "sha256-bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/idl/idl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000185735513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-58P4ESQrgO8n56xWth0N6+2zjgYON+F9sDVFs4Il9Ig=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/idl/idl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/idl/idl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bnfINmXK6pNqMjA7b85Zu+grFCGH8m1ZaVmyLfnkbO0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000116618076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "39172" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.twebddf7x5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000116618076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twebddf7x5" + }, + { + "Name": "integrity", + "Value": "sha256-PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/javascript/javascript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.twebddf7x5.js", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "39172" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twebddf7x5" + }, + { + "Name": "integrity", + "Value": "sha256-PVHKcjWDr6t/64rM+rOrY3jltSCS4e1IzQ+DjVKmU9M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/javascript/javascript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/javascript/javascript.twebddf7x5.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twebddf7x5" + }, + { + "Name": "integrity", + "Value": "sha256-cRpm9yS8FRl8/AFF5ZE34VQI9Vnn81iB8vCHHH1rPwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/javascript/javascript.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000741839763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.ygjq8f5w16.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000741839763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ygjq8f5w16" + }, + { + "Name": "integrity", + "Value": "sha256-7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.ygjq8f5w16.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ygjq8f5w16" + }, + { + "Name": "integrity", + "Value": "sha256-7ibkGXEHH67xS84NoOg53rpL/p0nGTHMJZuWvqoZoFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jinja2/jinja2.ygjq8f5w16.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ygjq8f5w16" + }, + { + "Name": "integrity", + "Value": "sha256-Q6X+SrEZi/kNwo3Lgp5MDvmFMnvG1SPAKlMBAHjqEGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jinja2/jinja2.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.joym8nqpdh.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000627746390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "joym8nqpdh" + }, + { + "Name": "integrity", + "Value": "sha256-7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jsx/jsx.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.joym8nqpdh.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "joym8nqpdh" + }, + { + "Name": "integrity", + "Value": "sha256-7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jsx/jsx.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.joym8nqpdh.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "joym8nqpdh" + }, + { + "Name": "integrity", + "Value": "sha256-aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000627746390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7QIRv0TS6qmW3+GqDWsPDx8UYXdtX1tNG7WdnVDG0zA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/jsx/jsx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aPNmHVzqJnsw1zF0WPbfZypsVYR8vvG54H2WTQWneTE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.js", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000312891114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.js", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.ucexmnyd8v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000312891114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ucexmnyd8v" + }, + { + "Name": "integrity", + "Value": "sha256-EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/julia/julia.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.ucexmnyd8v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ucexmnyd8v" + }, + { + "Name": "integrity", + "Value": "sha256-EkfSiYZh6sCuN+qxKMkhKORs83XoP2ZXMi/NOhhyfms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/julia/julia.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/julia/julia.ucexmnyd8v.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/julia/julia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ucexmnyd8v" + }, + { + "Name": "integrity", + "Value": "sha256-GHx8AROhh1cU7qwZZv2mUiEyTgh4n7jT9dGEdoV0MKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/julia/julia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444839858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.sxjukx0a31.js", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444839858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxjukx0a31" + }, + { + "Name": "integrity", + "Value": "sha256-cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/livescript/livescript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.sxjukx0a31.js", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxjukx0a31" + }, + { + "Name": "integrity", + "Value": "sha256-cPg6rA+iDL43u44cjO3hSjSgA4EvdSIQ+3O2Qby+2Tw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/livescript/livescript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/livescript/livescript.sxjukx0a31.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sxjukx0a31" + }, + { + "Name": "integrity", + "Value": "sha256-crsJxSHIbgmkp3u3VSalPKVEnxEXZN0wUSQ8YM1wUwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/livescript/livescript.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.79rfwceh0m.js", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462534690" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79rfwceh0m" + }, + { + "Name": "integrity", + "Value": "sha256-uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/lua/lua.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.79rfwceh0m.js", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79rfwceh0m" + }, + { + "Name": "integrity", + "Value": "sha256-uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/lua/lua.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.79rfwceh0m.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "79rfwceh0m" + }, + { + "Name": "integrity", + "Value": "sha256-z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/lua/lua.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.js", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462534690" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.js", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uyfMKpUdAu0bKp91nrQRe4ZtFraV/mNNm2yN3ErJ/ZM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/lua/lua.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/lua/lua.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z+6VRT6Ua/3vFp0zn7DZZefoikGYj4Ar+JTv+Sm7+AQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.9m934gvttd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000126039829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9m934gvttd" + }, + { + "Name": "integrity", + "Value": "sha256-j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/markdown/markdown.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.9m934gvttd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32209" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9m934gvttd" + }, + { + "Name": "integrity", + "Value": "sha256-j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/markdown/markdown.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.9m934gvttd.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9m934gvttd" + }, + { + "Name": "integrity", + "Value": "sha256-rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.js", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000126039829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.js", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "32209" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j7iLot4bFwerWgU5jL20NsMLBBhlllgEZD7FYie9ABo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/markdown/markdown.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rEzuopnnbKq+0tNNluOx1CjUsycEfFOfUlYtisLEe+g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000489715965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5815" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.o8jdxgeqe3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000489715965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8jdxgeqe3" + }, + { + "Name": "integrity", + "Value": "sha256-WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.o8jdxgeqe3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5815" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8jdxgeqe3" + }, + { + "Name": "integrity", + "Value": "sha256-WPyOYCdvBJa+DZsaNz8X+cyPBDqYCc3wjXNLqiXNwDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mathematica/mathematica.o8jdxgeqe3.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8jdxgeqe3" + }, + { + "Name": "integrity", + "Value": "sha256-QRN4YYUuhjNEjyk63NsTi3BK2PRVN/0HNqKqDwFZLuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mathematica/mathematica.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.i8l2jrn430.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000763358779" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i8l2jrn430" + }, + { + "Name": "integrity", + "Value": "sha256-/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mbox/mbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.i8l2jrn430.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i8l2jrn430" + }, + { + "Name": "integrity", + "Value": "sha256-/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mbox/mbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.i8l2jrn430.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i8l2jrn430" + }, + { + "Name": "integrity", + "Value": "sha256-+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000763358779" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/niRixz9WkSeTMT9G5gWWnxSWO+tIE1H1+vO4ZhoSNc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mbox/mbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+fN3c4Ch1hi4ywq1Eau2fkL6vt3UTjsk+F0yc8KWYSE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.7vm8z7grxp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000252525253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3959" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vm8z7grxp" + }, + { + "Name": "integrity", + "Value": "sha256-PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/meta.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.7vm8z7grxp.js", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vm8z7grxp" + }, + { + "Name": "integrity", + "Value": "sha256-PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/meta.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.7vm8z7grxp.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3959" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vm8z7grxp" + }, + { + "Name": "integrity", + "Value": "sha256-8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/meta.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.js", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000252525253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3959" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.js", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PZuHYh7c8yi2Na+TqIbI4yOoWt39nt15iJN8qsAROpE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/meta.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/meta.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3959" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Cadb2WphhkKQU7SZB5oikiEBo4qDcy+DNeXmKT472g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.cnywrc8wrd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294985251" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnywrc8wrd" + }, + { + "Name": "integrity", + "Value": "sha256-mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mirc/mirc.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.cnywrc8wrd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10271" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnywrc8wrd" + }, + { + "Name": "integrity", + "Value": "sha256-mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mirc/mirc.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.cnywrc8wrd.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnywrc8wrd" + }, + { + "Name": "integrity", + "Value": "sha256-w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000294985251" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10271" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mF1ls++cSxHeG6V5lta4CMbWSq6V0wAPSU3Sl5slpDo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mirc/mirc.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w1wdvh6/GtV8aKz8A4YRja/Y7uMsNxqZw5hzK3clRlk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470366886" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9072" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.mgvumivio7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470366886" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgvumivio7" + }, + { + "Name": "integrity", + "Value": "sha256-xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mllike/mllike.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.mgvumivio7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9072" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgvumivio7" + }, + { + "Name": "integrity", + "Value": "sha256-xsjQspLghQwTRCIo7bfTPk8f4dNnIWNhn06084kvszI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mllike/mllike.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mllike/mllike.mgvumivio7.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgvumivio7" + }, + { + "Name": "integrity", + "Value": "sha256-LJSF+DtCqBtBWJpp+DBRoCFYRGzjfoIdzsnuO/pQzoI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mllike/mllike.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.3ksfk93kar.js", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452284034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ksfk93kar" + }, + { + "Name": "integrity", + "Value": "sha256-rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/modelica/modelica.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.3ksfk93kar.js", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7179" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ksfk93kar" + }, + { + "Name": "integrity", + "Value": "sha256-rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/modelica/modelica.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.3ksfk93kar.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ksfk93kar" + }, + { + "Name": "integrity", + "Value": "sha256-fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.js", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000452284034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.js", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7179" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTn0DgsPxiaFrJgDIQ2Q3jEKl675gLKxFjsgO+kezJw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/modelica/modelica.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fhnb/IoHWt6u3T2KHCxzEtJ7wcJewF9+ewhYIVUwJok=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.1f4mj5crka.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000579710145" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f4mj5crka" + }, + { + "Name": "integrity", + "Value": "sha256-3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.1f4mj5crka.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f4mj5crka" + }, + { + "Name": "integrity", + "Value": "sha256-3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.1f4mj5crka.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f4mj5crka" + }, + { + "Name": "integrity", + "Value": "sha256-4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000579710145" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3WY9/vwAcGpR05DNz06x8wJdQ0Z63pGOuBcrOUm1hQc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mscgen/mscgen.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4HbkQ3MUuWmOWv3xmjU4wW+3zk3+3TWJSIWmg/zhxQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.1n2sxffsbm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000491883915" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1n2sxffsbm" + }, + { + "Name": "integrity", + "Value": "sha256-o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mumps/mumps.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.1n2sxffsbm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1n2sxffsbm" + }, + { + "Name": "integrity", + "Value": "sha256-o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mumps/mumps.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.1n2sxffsbm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1n2sxffsbm" + }, + { + "Name": "integrity", + "Value": "sha256-h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000491883915" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.js", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o7YqaBORgQjMGI8Ag82Dn8csBRLBiQxH6RiJ9w6fa04=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/mumps/mumps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h/s4kJcNCyLF+Wze6cJN1M6YqNssPRqsEspdrMaHcxc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299490866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.utlnydw8v2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299490866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "utlnydw8v2" + }, + { + "Name": "integrity", + "Value": "sha256-vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nginx/nginx.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.utlnydw8v2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "utlnydw8v2" + }, + { + "Name": "integrity", + "Value": "sha256-vnviITK5bXS+G01iSOvkGBcou9ScWtNXMj4WDxxsTPA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nginx/nginx.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nginx/nginx.utlnydw8v2.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "utlnydw8v2" + }, + { + "Name": "integrity", + "Value": "sha256-qqV3K+wc/2aTLZQQ5vrWDKriHHBwNkQyDwbim2Z2+QE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nginx/nginx.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.bfnw19hadk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000297973778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfnw19hadk" + }, + { + "Name": "integrity", + "Value": "sha256-lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nsis/nsis.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.bfnw19hadk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfnw19hadk" + }, + { + "Name": "integrity", + "Value": "sha256-lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nsis/nsis.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.bfnw19hadk.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfnw19hadk" + }, + { + "Name": "integrity", + "Value": "sha256-psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000297973778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.js", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lzMcD/EacR46IBPITJUViMh3xUaAmb1kDUPHQvDjAKc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/nsis/nsis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-psGV3djATsZqO+Ewx7kF63Cq3Azw0ATQJoVumgnI3tU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000572737686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.ktc4chfk5t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000572737686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktc4chfk5t" + }, + { + "Name": "integrity", + "Value": "sha256-6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.ktc4chfk5t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktc4chfk5t" + }, + { + "Name": "integrity", + "Value": "sha256-6HmDGSnxyPFjpDV4q8Aps2/Em6YCCNzIuQpZ6pOMk28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ntriples/ntriples.ktc4chfk5t.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktc4chfk5t" + }, + { + "Name": "integrity", + "Value": "sha256-TgIqYIbPOVpn6vD96EhifUaEFh2GkKevuDz5mwy2nZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ntriples/ntriples.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.j1gqqu3755.js", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000601684717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1gqqu3755" + }, + { + "Name": "integrity", + "Value": "sha256-t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/octave/octave.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.j1gqqu3755.js", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4665" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1gqqu3755" + }, + { + "Name": "integrity", + "Value": "sha256-t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/octave/octave.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.j1gqqu3755.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1gqqu3755" + }, + { + "Name": "integrity", + "Value": "sha256-iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/octave/octave.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.js", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000601684717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.js", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4665" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1VmoGEVc5YA7uXD0ZMStxBYji++fGkZuUZmCzzhbWg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/octave/octave.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/octave/octave.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iBhdVoxOzOxyXb86bqk9+FtIA5s0e2+uk2OW8hI89AA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.js", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462748727" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.js", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6913" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.v9q80f9cka.js", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462748727" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9q80f9cka" + }, + { + "Name": "integrity", + "Value": "sha256-A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/oz/oz.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.v9q80f9cka.js", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6913" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9q80f9cka" + }, + { + "Name": "integrity", + "Value": "sha256-A2PkGK0yGf48cqrNEZOaSKv4LYutBzea0k7miqIP9Dw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/oz/oz.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/oz/oz.v9q80f9cka.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/oz/oz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9q80f9cka" + }, + { + "Name": "integrity", + "Value": "sha256-d8lvaTmU/ML6RmWnEmclHMSKi1/rtjbvIcWrXKLwCWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/oz/oz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.91dz1turpa.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000609384522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1640" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91dz1turpa" + }, + { + "Name": "integrity", + "Value": "sha256-Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pascal/pascal.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.91dz1turpa.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91dz1turpa" + }, + { + "Name": "integrity", + "Value": "sha256-Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pascal/pascal.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.91dz1turpa.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1640" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91dz1turpa" + }, + { + "Name": "integrity", + "Value": "sha256-QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000609384522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1640" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q/7iIuwQ/JW6fEfZBtuK4McPEg2ctQTqVOxZ+bA59eI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pascal/pascal.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1640" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QFVN7bNcGlh36b8oMkxJQS52ZiUYZfeNVln3mKdhMyU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000877192982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3684" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.qje1b5ytv7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000877192982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qje1b5ytv7" + }, + { + "Name": "integrity", + "Value": "sha256-5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.qje1b5ytv7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3684" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qje1b5ytv7" + }, + { + "Name": "integrity", + "Value": "sha256-5n7YnvNcDA8j3D+l9YrnJT/x4BQbsxY4ny4verZU8IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pegjs/pegjs.qje1b5ytv7.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1139" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qje1b5ytv7" + }, + { + "Name": "integrity", + "Value": "sha256-PEd/w0qceDTG9lJNHHWnBnLdEVJttX/VK6p8LWupnAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pegjs/pegjs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.f2q04c1636.js", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000114155251" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2q04c1636" + }, + { + "Name": "integrity", + "Value": "sha256-90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/perl/perl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.f2q04c1636.js", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "56973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2q04c1636" + }, + { + "Name": "integrity", + "Value": "sha256-90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/perl/perl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.f2q04c1636.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2q04c1636" + }, + { + "Name": "integrity", + "Value": "sha256-75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/perl/perl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000114155251" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "56973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-90cmZecofHQlrTGHeQFLgflsjDTd4gGR2LFp/C43SZI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/perl/perl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/perl/perl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-75dYvXntpoHJVK4hFsuMS0etBm6vWDyr+mRGTpe18Y8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.doserzqcwe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166417041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "doserzqcwe" + }, + { + "Name": "integrity", + "Value": "sha256-U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/php/php.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.doserzqcwe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18524" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "doserzqcwe" + }, + { + "Name": "integrity", + "Value": "sha256-U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/php/php.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.doserzqcwe.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "doserzqcwe" + }, + { + "Name": "integrity", + "Value": "sha256-/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/php/php.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.js", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166417041" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.js", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18524" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U3DSlFtKHR7SJNm+4hlD5Ujzm0Xqpi8OwtR7rhjvLdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/php/php.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/php/php.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/RQUHZN6AREA7qssRXN/19oWc970A23duE/qvsRGc8I=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000425713069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.q4nmayh5wc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000425713069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4nmayh5wc" + }, + { + "Name": "integrity", + "Value": "sha256-moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pig/pig.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.q4nmayh5wc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4nmayh5wc" + }, + { + "Name": "integrity", + "Value": "sha256-moBhpfkDIWklPLYoAbojhA/2P5PY+bCtrLmRXZd6u0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pig/pig.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pig/pig.q4nmayh5wc.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pig/pig.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4nmayh5wc" + }, + { + "Name": "integrity", + "Value": "sha256-ozaE6gsSV/M1i4rU502Tx7ML7XUuHbkLfg5S3Ud06fM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pig/pig.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.7mogid8nyc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000237191651" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mogid8nyc" + }, + { + "Name": "integrity", + "Value": "sha256-YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/powershell/powershell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.7mogid8nyc.js", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13317" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mogid8nyc" + }, + { + "Name": "integrity", + "Value": "sha256-YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/powershell/powershell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.7mogid8nyc.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mogid8nyc" + }, + { + "Name": "integrity", + "Value": "sha256-rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000237191651" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13317" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YTnavhLBVWO9/XXPqZnnWiVaymeo37/87wkvzV58rDM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/powershell/powershell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rlogUAWHHmT17wBbkFZgZitJevzD49W4JKHhz1O66rY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.js", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001270648030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.js", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.ofmwf76okf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001270648030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofmwf76okf" + }, + { + "Name": "integrity", + "Value": "sha256-lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/properties/properties.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.ofmwf76okf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofmwf76okf" + }, + { + "Name": "integrity", + "Value": "sha256-lISCxAzKTSNw3/Y7y/qXxcwSEHLlUgU/r5qTzhs3jRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/properties/properties.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/properties/properties.ofmwf76okf.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/properties/properties.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ofmwf76okf" + }, + { + "Name": "integrity", + "Value": "sha256-1EPO6D44STwo6TGkIujZDCE8vUpWbkUGjPyAsWWjMn8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/properties/properties.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.ixze7ntn1v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001042752868" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ixze7ntn1v" + }, + { + "Name": "integrity", + "Value": "sha256-ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.ixze7ntn1v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2262" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ixze7ntn1v" + }, + { + "Name": "integrity", + "Value": "sha256-ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.ixze7ntn1v.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ixze7ntn1v" + }, + { + "Name": "integrity", + "Value": "sha256-19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001042752868" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2262" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZmD8tAlGR91PSieS+oyzELz5udCTldZZMvnw5vZZx2s=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/protobuf/protobuf.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "958" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-19BtEcaD7k020KQR1njB6GUoup6bFKDWKB1lGzvuJ8o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299760192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.mrbkcxhnhx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299760192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mrbkcxhnhx" + }, + { + "Name": "integrity", + "Value": "sha256-bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pug/pug.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.mrbkcxhnhx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mrbkcxhnhx" + }, + { + "Name": "integrity", + "Value": "sha256-bgdSxLvUDW+QaoGHxHV1Jr8JsXJmPK/RfVuQgWWGqUY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pug/pug.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/pug/pug.mrbkcxhnhx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/pug/pug.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mrbkcxhnhx" + }, + { + "Name": "integrity", + "Value": "sha256-TY62ykkpiUrH0f/bJMyDmQ2QS0PrcT5UhLqCEXYyG6k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/pug/pug.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.acxor7y3l7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000364830354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acxor7y3l7" + }, + { + "Name": "integrity", + "Value": "sha256-NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/puppet/puppet.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.acxor7y3l7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acxor7y3l7" + }, + { + "Name": "integrity", + "Value": "sha256-NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/puppet/puppet.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.acxor7y3l7.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acxor7y3l7" + }, + { + "Name": "integrity", + "Value": "sha256-x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.js", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000364830354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.js", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NupD53nIyBufoce3U2TTt87cWSZ9kek7J93DhZscKRc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/puppet/puppet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x3cY97gIDEn4Pf8Yw/hAIIN/BZq08TZnbbKCkuIot7s=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.bttvy8j9so.js", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000246852629" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bttvy8j9so" + }, + { + "Name": "integrity", + "Value": "sha256-r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/python/python.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.bttvy8j9so.js", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bttvy8j9so" + }, + { + "Name": "integrity", + "Value": "sha256-r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/python/python.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.bttvy8j9so.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bttvy8j9so" + }, + { + "Name": "integrity", + "Value": "sha256-+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/python/python.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.js", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000246852629" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.js", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15122" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r5rt82vY7zx9KLI6W1cQhm4qPIDuhKu6aQYN2Cn7XTY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/python/python.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/python/python.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4050" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+W6Qj6o5wybqGDkHK+SORDYVPwsVjbV4KRS7ilVDouc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.1r5g9urjgd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442282176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1r5g9urjgd" + }, + { + "Name": "integrity", + "Value": "sha256-4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/q/q.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.1r5g9urjgd.js", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1r5g9urjgd" + }, + { + "Name": "integrity", + "Value": "sha256-4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/q/q.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.1r5g9urjgd.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1r5g9urjgd" + }, + { + "Name": "integrity", + "Value": "sha256-zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/q/q.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.js", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442282176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.js", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4y2Ftd49gnSLK3nSH9mN9g66QidugWPWpk61T92bYyg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/q/q.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/q/q.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2260" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zAeG6NBwseGBhiVSSD4PjFNl4oFwwWAU3UIT7x6cpm0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.js", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000473036897" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.js", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6932" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.k9k2tuozc6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000473036897" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9k2tuozc6" + }, + { + "Name": "integrity", + "Value": "sha256-6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/r/r.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.k9k2tuozc6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6932" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9k2tuozc6" + }, + { + "Name": "integrity", + "Value": "sha256-6Henh8kdiX++2KJj6g2uaGRuaD2HBwBXlAg68Ki26po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/r/r.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/r/r.k9k2tuozc6.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/r/r.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9k2tuozc6" + }, + { + "Name": "integrity", + "Value": "sha256-nwd8f5BRwLHvnt0gGhZEQi32Zn8cIqGl93DpSY1aVUM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/r/r.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.d2j4e35v8m.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000716845878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d2j4e35v8m" + }, + { + "Name": "integrity", + "Value": "sha256-hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rpm/rpm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.d2j4e35v8m.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d2j4e35v8m" + }, + { + "Name": "integrity", + "Value": "sha256-hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rpm/rpm.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.d2j4e35v8m.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d2j4e35v8m" + }, + { + "Name": "integrity", + "Value": "sha256-ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000716845878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hQOv5x4dRxU0S3OO5Fx7gENuLmRpO2gIJ7tFwRHavjM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rpm/rpm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ChdIx1JZHVtFGnW/ldOOMYnJ8BpUaQY5EvfHeByRHTQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.egtvh8xgxw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324254215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "egtvh8xgxw" + }, + { + "Name": "integrity", + "Value": "sha256-3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rst/rst.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.egtvh8xgxw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "egtvh8xgxw" + }, + { + "Name": "integrity", + "Value": "sha256-3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rst/rst.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.egtvh8xgxw.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "egtvh8xgxw" + }, + { + "Name": "integrity", + "Value": "sha256-wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rst/rst.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324254215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3odF9aRJBm5/h/bxEjgR/RA1oNsYgs1k8h/9e5B2b9U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rst/rst.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rst/rst.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wiZ9/EHtgIsKSo5edJvy9meBfraR0kYE+KwI/yejAOs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.6sgz64quio.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313873195" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6sgz64quio" + }, + { + "Name": "integrity", + "Value": "sha256-trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ruby/ruby.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.6sgz64quio.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6sgz64quio" + }, + { + "Name": "integrity", + "Value": "sha256-trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ruby/ruby.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.6sgz64quio.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6sgz64quio" + }, + { + "Name": "integrity", + "Value": "sha256-ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313873195" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trWSUhXp+1lLN2J5he/p46NL0nl3knwIdnExltc5Iy4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ruby/ruby.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3185" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ztY6it7jz9Mls5ZGqnbBKZmLmcnnAbTPgGGLr/6GrNc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.dwh5lxu3p8.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000788643533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwh5lxu3p8" + }, + { + "Name": "integrity", + "Value": "sha256-Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rust/rust.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.dwh5lxu3p8.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3170" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwh5lxu3p8" + }, + { + "Name": "integrity", + "Value": "sha256-Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rust/rust.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.dwh5lxu3p8.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwh5lxu3p8" + }, + { + "Name": "integrity", + "Value": "sha256-5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/rust/rust.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000788643533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.js", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3170" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ix3buISrwHDJ5AzmvYS6shRJGl2dzO2qEl9mvJGVKTI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/rust/rust.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/rust/rust.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1267" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5HYNEa2R/m1KOpSHY2zgsljkDxeT/aBqV2P25FqkQ64=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.gfadcpmhok.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000179083095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gfadcpmhok" + }, + { + "Name": "integrity", + "Value": "sha256-9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sas/sas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.gfadcpmhok.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gfadcpmhok" + }, + { + "Name": "integrity", + "Value": "sha256-9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sas/sas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.gfadcpmhok.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gfadcpmhok" + }, + { + "Name": "integrity", + "Value": "sha256-JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sas/sas.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000179083095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9FkjGXZm/o3zNgLVvuEhoWmRofV0xCCUkZSOVDYzThk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sas/sas.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sas/sas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JfslowJHfQWuNHB716X87tqp7+K4ZsiUdQnDe71/884=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000355239787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.k2dtpf3pgh.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000355239787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k2dtpf3pgh" + }, + { + "Name": "integrity", + "Value": "sha256-lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sass/sass.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.k2dtpf3pgh.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k2dtpf3pgh" + }, + { + "Name": "integrity", + "Value": "sha256-lFMFC219KaHV46dAPjgB/3fSCDSiyNVxHTcL1l+4XwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sass/sass.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sass/sass.k2dtpf3pgh.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sass/sass.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k2dtpf3pgh" + }, + { + "Name": "integrity", + "Value": "sha256-7zXUO+uFxR/xRF88T1XkXUDdaNBZZXefLbepGOk7VLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sass/sass.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.js", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000265111347" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.js", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.v1oibrwkoe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000265111347" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1oibrwkoe" + }, + { + "Name": "integrity", + "Value": "sha256-Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/scheme/scheme.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.v1oibrwkoe.js", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1oibrwkoe" + }, + { + "Name": "integrity", + "Value": "sha256-Q4F1E/S+zYNmtjVHKVTTWHxV4/YMZVOrDJW9ffwZjXM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/scheme/scheme.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/scheme/scheme.v1oibrwkoe.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1oibrwkoe" + }, + { + "Name": "integrity", + "Value": "sha256-MdaLNUiGd4oEBSjRCX1Elk+SGWexdoghx6OEKg38ITM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/scheme/scheme.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.fgwbzgdorw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000532481363" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgwbzgdorw" + }, + { + "Name": "integrity", + "Value": "sha256-D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/shell/shell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.fgwbzgdorw.js", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5549" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgwbzgdorw" + }, + { + "Name": "integrity", + "Value": "sha256-D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/shell/shell.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.fgwbzgdorw.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgwbzgdorw" + }, + { + "Name": "integrity", + "Value": "sha256-w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/shell/shell.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000532481363" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.js", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5549" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D4zoa9sTDpxYbU4NYy/OfqEkA/03BdXhbsl+U6pRvvw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/shell/shell.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/shell/shell.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w/PXWnL/AeKA1UsJF3LdC8vsckZjrhvL7YapuJg0Qqk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000680735194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.lwas4to6p9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000680735194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lwas4to6p9" + }, + { + "Name": "integrity", + "Value": "sha256-y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sieve/sieve.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.lwas4to6p9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lwas4to6p9" + }, + { + "Name": "integrity", + "Value": "sha256-y8Ek4LCGVeTtvuIc9fnRt7P2Xa7C82+sCePVWPp3Fy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sieve/sieve.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sieve/sieve.lwas4to6p9.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lwas4to6p9" + }, + { + "Name": "integrity", + "Value": "sha256-DtWiWJiKmOUE0+NilYo3g4h8HwtiM8vzvNDOfP7Uan0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sieve/sieve.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.0eipwcppzz.js", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000261233020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3827" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eipwcppzz" + }, + { + "Name": "integrity", + "Value": "sha256-qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/slim/slim.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.0eipwcppzz.js", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eipwcppzz" + }, + { + "Name": "integrity", + "Value": "sha256-qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/slim/slim.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.0eipwcppzz.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3827" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eipwcppzz" + }, + { + "Name": "integrity", + "Value": "sha256-Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/slim/slim.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.js", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000261233020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3827" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.js", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qDY+iuCBt0HrQb1M7eh2sz4DnKAuDf7vWfNLBUUEE6U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/slim/slim.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/slim/slim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3827" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Alp7Zo13ogMMekDOQb61pwVZV8Y3Au+Rpc3MaPLHOa0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.90llh4hmwr.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000719424460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90llh4hmwr" + }, + { + "Name": "integrity", + "Value": "sha256-mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.90llh4hmwr.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90llh4hmwr" + }, + { + "Name": "integrity", + "Value": "sha256-mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.90llh4hmwr.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90llh4hmwr" + }, + { + "Name": "integrity", + "Value": "sha256-7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000719424460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4712" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mS4TPpXEBbxVaP+AwPCB0epGkFWBYSMjvzxUC0XY52A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7kK8gQ/pHcYpujMwhBW/0rRCtBjvF8tsLPR1iQgupXI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000534188034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.xou5939g5e.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000534188034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xou5939g5e" + }, + { + "Name": "integrity", + "Value": "sha256-oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smarty/smarty.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.xou5939g5e.js", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xou5939g5e" + }, + { + "Name": "integrity", + "Value": "sha256-oU+DJLdbxztdNi5fHN9s7MfTinNRRcxZnOve2MhUB3w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smarty/smarty.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/smarty/smarty.xou5939g5e.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xou5939g5e" + }, + { + "Name": "integrity", + "Value": "sha256-VawOp9DDv+3E/phWdPs1IqCsbF7QvZkK7QbkUwHEvto=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/smarty/smarty.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.js", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001068376068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.js", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.sbzigc9lc9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001068376068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sbzigc9lc9" + }, + { + "Name": "integrity", + "Value": "sha256-qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/solr/solr.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.sbzigc9lc9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sbzigc9lc9" + }, + { + "Name": "integrity", + "Value": "sha256-qOzVMqA9h4vCYxnHXG0tkB7YHYWtEgkmHoHfzFaINQw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/solr/solr.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/solr/solr.sbzigc9lc9.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/solr/solr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sbzigc9lc9" + }, + { + "Name": "integrity", + "Value": "sha256-i52+C9SN4PLvceMDTP1/OQEzxSV+fB2+nf6LrLgWAko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/solr/solr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.d98lv5zkly.js", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000215842866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d98lv5zkly" + }, + { + "Name": "integrity", + "Value": "sha256-EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/soy/soy.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.d98lv5zkly.js", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d98lv5zkly" + }, + { + "Name": "integrity", + "Value": "sha256-EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/soy/soy.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.d98lv5zkly.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d98lv5zkly" + }, + { + "Name": "integrity", + "Value": "sha256-1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/soy/soy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000215842866" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EQBYHzf2Uj0YDCBWY3tL8THBw/Ua51qI6XbZcIcU9VU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/soy/soy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/soy/soy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1PgCdMjZzFTUy2Vk22fzsulV7rgiZ/szBlHz0t5P91g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.2472swju7v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2472swju7v" + }, + { + "Name": "integrity", + "Value": "sha256-glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sparql/sparql.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.2472swju7v.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2472swju7v" + }, + { + "Name": "integrity", + "Value": "sha256-glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sparql/sparql.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.2472swju7v.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2472swju7v" + }, + { + "Name": "integrity", + "Value": "sha256-+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-glxA3rGSX4gsZ9qg2enB4jI/0N3gcMFNb5j030QECoE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sparql/sparql.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+EsRy4/BY8Oy4dTdMR+6F5d8dszWSz4/qvKCNjd8FUY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.3n3lvljl1o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000992063492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3n3lvljl1o" + }, + { + "Name": "integrity", + "Value": "sha256-UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.3n3lvljl1o.js", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3n3lvljl1o" + }, + { + "Name": "integrity", + "Value": "sha256-UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.3n3lvljl1o.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3n3lvljl1o" + }, + { + "Name": "integrity", + "Value": "sha256-6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000992063492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UZfct4xFJ0yGhK9iz0m4/o7o0R7ehNd2Cdp9OqWObpA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6G+HdTCQ8dHWfpFhf22lpqyEejP9neN9tBDRPGNbbFY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.dl87f3f2b6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074283167" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl87f3f2b6" + }, + { + "Name": "integrity", + "Value": "sha256-vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sql/sql.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.dl87f3f2b6.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48501" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl87f3f2b6" + }, + { + "Name": "integrity", + "Value": "sha256-vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sql/sql.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.dl87f3f2b6.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl87f3f2b6" + }, + { + "Name": "integrity", + "Value": "sha256-TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/sql/sql.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074283167" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.js", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "48501" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vw0JGg3QT4qCK9GVZneUKN/KdooXmLzYj0Yh5ofYlm8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/sql/sql.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/sql/sql.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TILKLECHhuDzRBRiIN6D4PWkwYh+O5HuPCGCt/PI6ZM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.ce8b7yhm2p.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000485201359" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ce8b7yhm2p" + }, + { + "Name": "integrity", + "Value": "sha256-RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stex/stex.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.ce8b7yhm2p.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ce8b7yhm2p" + }, + { + "Name": "integrity", + "Value": "sha256-RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stex/stex.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.ce8b7yhm2p.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ce8b7yhm2p" + }, + { + "Name": "integrity", + "Value": "sha256-yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stex/stex.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000485201359" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RL60lyOvKRJURulJfzVL2p4ndpI7ngI9a6o5FCIXa8w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stex/stex.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/stex/stex.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yO2BthedB5BRSaBXA0BRkGH9gKlCd5bmbJ0lQCmz1rg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.0aqpxxc3i9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000092097992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0aqpxxc3i9" + }, + { + "Name": "integrity", + "Value": "sha256-uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stylus/stylus.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.0aqpxxc3i9.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "43246" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0aqpxxc3i9" + }, + { + "Name": "integrity", + "Value": "sha256-uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stylus/stylus.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.0aqpxxc3i9.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0aqpxxc3i9" + }, + { + "Name": "integrity", + "Value": "sha256-wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000092097992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.js", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "43246" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uEk7vxWoBhy0yXx+K59/e6kvZoCysLDPrK8BWYvRh5U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/stylus/stylus.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wsNGaGL3BbnV6i+Vq4EqwpvJgn1fskhXu7Rc5OY6Mm0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.go08vb5ldv.js", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395413207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "go08vb5ldv" + }, + { + "Name": "integrity", + "Value": "sha256-cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/swift/swift.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.go08vb5ldv.js", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "go08vb5ldv" + }, + { + "Name": "integrity", + "Value": "sha256-cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/swift/swift.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.go08vb5ldv.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "go08vb5ldv" + }, + { + "Name": "integrity", + "Value": "sha256-0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/swift/swift.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.js", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000395413207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.js", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cNDUUT2knqQOgCRWhylbq/7ZWlRlVcf19xh8dqLkrhg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/swift/swift.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/swift/swift.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0xUYjUlgBwgmlv7Ii+6ML28Aez52vulO24vDNFgsCbs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000562429696" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5085" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.n5d2fl9ewx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000562429696" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5d2fl9ewx" + }, + { + "Name": "integrity", + "Value": "sha256-G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tcl/tcl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.n5d2fl9ewx.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5085" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5d2fl9ewx" + }, + { + "Name": "integrity", + "Value": "sha256-G6L0SfE3AZMeT0U4LppntAUv5LBzpEu7PKZ1GI+DcsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tcl/tcl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tcl/tcl.n5d2fl9ewx.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5d2fl9ewx" + }, + { + "Name": "integrity", + "Value": "sha256-0iQdcMU4DxKA9IvGuM8IyQV5WXO6HaN3l1g/qH1mseU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tcl/tcl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.cm7nqcl0ow.js", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000296471983" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cm7nqcl0ow" + }, + { + "Name": "integrity", + "Value": "sha256-VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/textile/textile.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.cm7nqcl0ow.js", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14305" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cm7nqcl0ow" + }, + { + "Name": "integrity", + "Value": "sha256-VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/textile/textile.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.cm7nqcl0ow.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cm7nqcl0ow" + }, + { + "Name": "integrity", + "Value": "sha256-oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/textile/textile.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.js", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000296471983" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.js", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14305" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOBuNwjHXo0w1CWfqwqlBZKMeJj43K9oeLj8jh32xs4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/textile/textile.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/textile/textile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oooleqV0UgpfJdEere/lrwFu8QrO/GHoN5bYlOufcjs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.bl2nyuon59.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000408663670" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bl2nyuon59" + }, + { + "Name": "integrity", + "Value": "sha256-IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.bl2nyuon59.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bl2nyuon59" + }, + { + "Name": "integrity", + "Value": "sha256-IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.bl2nyuon59.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bl2nyuon59" + }, + { + "Name": "integrity", + "Value": "sha256-KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007194244604" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.fwszic81yn.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007194244604" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fwszic81yn" + }, + { + "Name": "integrity", + "Value": "sha256-8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.fwszic81yn.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fwszic81yn" + }, + { + "Name": "integrity", + "Value": "sha256-8cBk4jNtEZLyDa/+9ZqugzwEolRuMLgEYXj9IWIACvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.fwszic81yn.css.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fwszic81yn" + }, + { + "Name": "integrity", + "Value": "sha256-nTv9jBIP1S2miRvURsrqRWagsjnimrOUF68HA/x0W8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000408663670" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IbneBDAMlP7v02uHCkekBWpvY0CGgbow2UO0igDQLcY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KoDPkWMpIzpQ748KS4QD7Wj5RB/2oqPGysS9VF7ixdI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.0u6xrbtw0i.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6xrbtw0i" + }, + { + "Name": "integrity", + "Value": "sha256-KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.0u6xrbtw0i.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6xrbtw0i" + }, + { + "Name": "integrity", + "Value": "sha256-KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.0u6xrbtw0i.css.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6xrbtw0i" + }, + { + "Name": "integrity", + "Value": "sha256-ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.css", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KIhKEZrRXtG7TIv7Q2NDql9DER1RxtW55CbZi7Dn7pg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ySRN819IkFXCyxNtyo8312i6bWc40dqn6k7S9o83ieo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.isja3yci8q.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429737860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "isja3yci8q" + }, + { + "Name": "integrity", + "Value": "sha256-sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.isja3yci8q.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "isja3yci8q" + }, + { + "Name": "integrity", + "Value": "sha256-sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.isja3yci8q.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "isja3yci8q" + }, + { + "Name": "integrity", + "Value": "sha256-SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429737860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sm3jzZitvuERGjFHuNN8LYW8xr1lKmbGdMWIEeScGT8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tiki/tiki.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SkMEkSKzpdAhcv/Z6Fd1gbcyVxCjWkuu9FGQ9dIlhrs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.e5dnetew2e.js", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001020408163" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5dnetew2e" + }, + { + "Name": "integrity", + "Value": "sha256-UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/toml/toml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.e5dnetew2e.js", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5dnetew2e" + }, + { + "Name": "integrity", + "Value": "sha256-UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/toml/toml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.e5dnetew2e.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e5dnetew2e" + }, + { + "Name": "integrity", + "Value": "sha256-ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/toml/toml.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001020408163" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UuRgceblaTlcFM9OcohfP209VNgSXgQjlvpF9bxiiAM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/toml/toml.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/toml/toml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "979" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ARk+NgyQPzc8UCLKMn/obd0pOXQi2NRnGHejOkado2o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001003009027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.r3dj11zxdv.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001003009027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r3dj11zxdv" + }, + { + "Name": "integrity", + "Value": "sha256-F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tornado/tornado.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.r3dj11zxdv.js", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r3dj11zxdv" + }, + { + "Name": "integrity", + "Value": "sha256-F35gpNgsFT1ft3CKlUOguhes/Reu/2LgR46PUm+IgVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tornado/tornado.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/tornado/tornado.r3dj11zxdv.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r3dj11zxdv" + }, + { + "Name": "integrity", + "Value": "sha256-fHoCvdOjzgJmaRli54IHG0jXLhMNAdfwq4L+1cepFNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/tornado/tornado.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.js", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001287001287" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.js", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.wegaqsyow2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001287001287" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wegaqsyow2" + }, + { + "Name": "integrity", + "Value": "sha256-aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/troff/troff.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.wegaqsyow2.js", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wegaqsyow2" + }, + { + "Name": "integrity", + "Value": "sha256-aCSmPB8Virns/lCZxH+n7k6yTtIgbkWLEEdS2MKB7nY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/troff/troff.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/troff/troff.wegaqsyow2.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/troff/troff.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wegaqsyow2" + }, + { + "Name": "integrity", + "Value": "sha256-CYNa/oVkkFempjecftF0D/Iq+qMmVzbd9TvuEuOrqFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/troff/troff.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.938e99q702.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000403225806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "938e99q702" + }, + { + "Name": "integrity", + "Value": "sha256-de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.938e99q702.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8071" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "938e99q702" + }, + { + "Name": "integrity", + "Value": "sha256-de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.938e99q702.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "938e99q702" + }, + { + "Name": "integrity", + "Value": "sha256-FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000403225806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8071" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-de1zooeNuc9+CsXe64+94sb4rdwMsA3CHaerpuzhnt0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FD3vJRa6gLZ1cvbH4V+uStioaQoiv3DpD6WJ8f0kwt8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.h0y4wxsz6p.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000318268619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h0y4wxsz6p" + }, + { + "Name": "integrity", + "Value": "sha256-z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.h0y4wxsz6p.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h0y4wxsz6p" + }, + { + "Name": "integrity", + "Value": "sha256-z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.h0y4wxsz6p.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h0y4wxsz6p" + }, + { + "Name": "integrity", + "Value": "sha256-UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000318268619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z7b252Nnqh3WuznuLcw7Rt15he4gaFXcbu/ViZJQXmI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/ttcn/ttcn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UvLdppqxOple8cC1yvBEn6yPgTu9JPHzQHk6HG/pYMw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.js", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000673400673" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.js", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.qlc1cn1jcy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000673400673" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlc1cn1jcy" + }, + { + "Name": "integrity", + "Value": "sha256-Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/turtle/turtle.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.qlc1cn1jcy.js", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlc1cn1jcy" + }, + { + "Name": "integrity", + "Value": "sha256-Dg7LJoGNzwU3heIBmZXV2XrG9mMuK1mBgx0GY8CGxL8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/turtle/turtle.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/turtle/turtle.qlc1cn1jcy.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlc1cn1jcy" + }, + { + "Name": "integrity", + "Value": "sha256-n0g1z22bZFdEj8dij0ALd6H6luF9qgIyR4Sr43WckzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/turtle/turtle.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.js", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000722543353" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.js", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4707" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.qyk6st1htq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000722543353" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyk6st1htq" + }, + { + "Name": "integrity", + "Value": "sha256-XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/twig/twig.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.qyk6st1htq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4707" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyk6st1htq" + }, + { + "Name": "integrity", + "Value": "sha256-XtBiLn05MoCWlMdgwnSAYfoab5qxGFpUC5HjmDSs9Dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/twig/twig.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/twig/twig.qyk6st1htq.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/twig/twig.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyk6st1htq" + }, + { + "Name": "integrity", + "Value": "sha256-AGIutcxk4sYXrEFCu1eH32048LG6mh/FwrcBb4tvREg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/twig/twig.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.dzfvoic94h.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000350754121" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzfvoic94h" + }, + { + "Name": "integrity", + "Value": "sha256-V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vb/vb.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.dzfvoic94h.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzfvoic94h" + }, + { + "Name": "integrity", + "Value": "sha256-V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vb/vb.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.dzfvoic94h.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzfvoic94h" + }, + { + "Name": "integrity", + "Value": "sha256-lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vb/vb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000350754121" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/21ZtC5CVOPvXlqXTbsGhtz/67IcEf7gcmTRAhzyQc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vb/vb.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vb/vb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lbe8nYJfjW6oCFwXh0hswGAaIXBVfIJiBEBR+McOhq8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.764oi3dpda.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000248200546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "764oi3dpda" + }, + { + "Name": "integrity", + "Value": "sha256-H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.764oi3dpda.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14146" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "764oi3dpda" + }, + { + "Name": "integrity", + "Value": "sha256-H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.764oi3dpda.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "764oi3dpda" + }, + { + "Name": "integrity", + "Value": "sha256-p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000248200546" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14146" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H3lr/AlWJ2VrlhGBdaWkcvt0VCjwDmA23rGUc4T2aUc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vbscript/vbscript.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p45dELRPvdg5kMSDysQMAVmNMvTAnIdzy6FdkE6Tc0I=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.js", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000535045479" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.js", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7301" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.xad0mlo94t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000535045479" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xad0mlo94t" + }, + { + "Name": "integrity", + "Value": "sha256-WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/velocity/velocity.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.xad0mlo94t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7301" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xad0mlo94t" + }, + { + "Name": "integrity", + "Value": "sha256-WU3FzYkpmSBTWQq8LA2p0TZC9Mgv2HBSO9/9/tY6Osk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/velocity/velocity.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/velocity/velocity.xad0mlo94t.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xad0mlo94t" + }, + { + "Name": "integrity", + "Value": "sha256-V8DQooNPRGeimEbhIiv39YeD+jSYPDJeh/MRJ2jqUjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/velocity/velocity.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.js", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000116849731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.js", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "30565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.z0877i80m7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000116849731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z0877i80m7" + }, + { + "Name": "integrity", + "Value": "sha256-Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/verilog/verilog.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.z0877i80m7.js", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z0877i80m7" + }, + { + "Name": "integrity", + "Value": "sha256-Y5NSewv1Cv5OM73I2fi7iogMOjqbgKOPqE6yezWFlq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/verilog/verilog.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/verilog/verilog.z0877i80m7.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z0877i80m7" + }, + { + "Name": "integrity", + "Value": "sha256-dX50ISgQdP+jjAz+jVVS2c4qEt1kspZUF3S65garVPU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/verilog/verilog.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.cfvuyn2fow.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000448430493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2229" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfvuyn2fow" + }, + { + "Name": "integrity", + "Value": "sha256-mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.cfvuyn2fow.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfvuyn2fow" + }, + { + "Name": "integrity", + "Value": "sha256-mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.cfvuyn2fow.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2229" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfvuyn2fow" + }, + { + "Name": "integrity", + "Value": "sha256-goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000448430493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2229" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mPjdROOkv0U0ViEoxqT3m0ODuiaZkgVBJIKqESREFHo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vhdl/vhdl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2229" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-goC519JmEhEyt85Q1HcLd+6JTYTY43850fZHMiHuUbc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.4au990fr9t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001053740780" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "948" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4au990fr9t" + }, + { + "Name": "integrity", + "Value": "sha256-dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vue/vue.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.4au990fr9t.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4au990fr9t" + }, + { + "Name": "integrity", + "Value": "sha256-dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vue/vue.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.4au990fr9t.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "948" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4au990fr9t" + }, + { + "Name": "integrity", + "Value": "sha256-c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/vue/vue.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001053740780" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "948" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.js", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2962" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dKUiwJYBNwHVtG3n4mSctgmlz3o7ugRqF6kWQYhhqlU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/vue/vue.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/vue/vue.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "948" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c3pjdpAnLOwanE6/DzldjAFoq//L2WEmulFxqPk+yHU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.frt0kefo6g.js", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000501253133" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "frt0kefo6g" + }, + { + "Name": "integrity", + "Value": "sha256-Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/wast/wast.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.frt0kefo6g.js", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "frt0kefo6g" + }, + { + "Name": "integrity", + "Value": "sha256-Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/wast/wast.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.frt0kefo6g.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "frt0kefo6g" + }, + { + "Name": "integrity", + "Value": "sha256-y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/wast/wast.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.js", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000501253133" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.js", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ve2L0iD+/ePx4L/xQdK/roEGaQZ5vhiMl8t4kDJapSQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/wast/wast.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/wast/wast.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y43+mVhNEDbOhu3x3ndwhvoIjh2mFuXjRS1oZJjtxoQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.6m1mal1rac.js", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000489715965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m1mal1rac" + }, + { + "Name": "integrity", + "Value": "sha256-rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/webidl/webidl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.6m1mal1rac.js", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5980" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m1mal1rac" + }, + { + "Name": "integrity", + "Value": "sha256-rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/webidl/webidl.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.6m1mal1rac.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6m1mal1rac" + }, + { + "Name": "integrity", + "Value": "sha256-o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000489715965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5980" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rj/Z6vITTiEF4eZJNi5v5WGm2JJGZAcWYaDOTvwSuhc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/webidl/webidl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o5cS4JYE/9UeK39MFkh1VPnIENKkquE2kB71S0Jv8GI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000301023480" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.pq6r45xycl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000301023480" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq6r45xycl" + }, + { + "Name": "integrity", + "Value": "sha256-H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xml/xml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.pq6r45xycl.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq6r45xycl" + }, + { + "Name": "integrity", + "Value": "sha256-H13bebODiXSJnWAaZNOEF8MRfOkiQAw1GWVpaKPQAF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xml/xml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xml/xml.pq6r45xycl.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/xml/xml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq6r45xycl" + }, + { + "Name": "integrity", + "Value": "sha256-QKHnx+WqDnr5uOGX65H9xESKC7NsETtXdePGhhSfI8g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xml/xml.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.8kyxmwvc20.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000219635405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8kyxmwvc20" + }, + { + "Name": "integrity", + "Value": "sha256-yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xquery/xquery.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.8kyxmwvc20.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16201" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8kyxmwvc20" + }, + { + "Name": "integrity", + "Value": "sha256-yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xquery/xquery.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.8kyxmwvc20.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8kyxmwvc20" + }, + { + "Name": "integrity", + "Value": "sha256-Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000219635405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.js", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16201" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yIzPd3mshMqt+aBOkTBH7DC89aYLAeWVLMZzevsfDBY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/xquery/xquery.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y74By6IbvC0IJwaSP5qsEZxD04MW3jKyTXRT79tej7M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000515729758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1938" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5631" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1938" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.rco7uriyv3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000515729758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1938" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rco7uriyv3" + }, + { + "Name": "integrity", + "Value": "sha256-9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yacas/yacas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.rco7uriyv3.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5631" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rco7uriyv3" + }, + { + "Name": "integrity", + "Value": "sha256-9b6r28mZruSC0lACqqIfzdlqo0oKA8GwcIcYGbr6oj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yacas/yacas.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yacas/yacas.rco7uriyv3.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1938" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rco7uriyv3" + }, + { + "Name": "integrity", + "Value": "sha256-T3jIwv838aDcGmL/ltd8Cod4A7wRNM/D3fRVDZ4skUM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yacas/yacas.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.3izi2k4jhn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001250000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3izi2k4jhn" + }, + { + "Name": "integrity", + "Value": "sha256-O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.3izi2k4jhn.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2370" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3izi2k4jhn" + }, + { + "Name": "integrity", + "Value": "sha256-O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.3izi2k4jhn.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3izi2k4jhn" + }, + { + "Name": "integrity", + "Value": "sha256-7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001250000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2370" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O5ZNJkVrv3Zq6p4dzM6nwBoD9pyHGgtf4A2sYp3OXxg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7tQ12exWkTcaIVhzweCBH98hucZY6YnGSzpLPfGInyM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000771604938" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.ugbjh18lvq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000771604938" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ugbjh18lvq" + }, + { + "Name": "integrity", + "Value": "sha256-ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml/yaml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.ugbjh18lvq.js", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ugbjh18lvq" + }, + { + "Name": "integrity", + "Value": "sha256-ztV2x79duQtZ6STmBeUOFCPY+n6u+vFGe9mZ+UKOii4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml/yaml.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/yaml/yaml.ugbjh18lvq.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ugbjh18lvq" + }, + { + "Name": "integrity", + "Value": "sha256-42HZsF3IGQI2ICWlWMsQ12OHS48IkvQJu4GR3+tR2Ts=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/yaml/yaml.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.3qi5nws2ph.js", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000809061489" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qi5nws2ph" + }, + { + "Name": "integrity", + "Value": "sha256-9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/z80/z80.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.3qi5nws2ph.js", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qi5nws2ph" + }, + { + "Name": "integrity", + "Value": "sha256-9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/z80/z80.js" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.3qi5nws2ph.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qi5nws2ph" + }, + { + "Name": "integrity", + "Value": "sha256-TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/mode/z80/z80.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.js", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000809061489" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.js", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9dr6mrJAMVH0Vg8NpeMHL5xYPRiUwetUdWifJTSGWKM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/mode/z80/z80.js.gz", + "AssetFile": "adminlte/plugins/codemirror/mode/z80/z80.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TwlHEwWZ9xJFY2jx91UkNeBawTCKFewDmj8IsHlJI6o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.5aezoigmzp.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001694915254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5aezoigmzp" + }, + { + "Name": "integrity", + "Value": "sha256-DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-day.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.5aezoigmzp.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2028" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5aezoigmzp" + }, + { + "Name": "integrity", + "Value": "sha256-DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-day.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.5aezoigmzp.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5aezoigmzp" + }, + { + "Name": "integrity", + "Value": "sha256-TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-day.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001694915254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2028" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DVOxUZ4EbjgWhJPY8F9iYvo3KzQrqb5xoa4oJYLyBwE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-day.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-day.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TFztWia7sQUhTe9d7kP3fKM1yZj5VB4wTUMMf4mwpsM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001650165017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "605" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "605" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.j5m5j26uus.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001650165017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "605" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5m5j26uus" + }, + { + "Name": "integrity", + "Value": "sha256-meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-night.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.j5m5j26uus.css", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2115" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5m5j26uus" + }, + { + "Name": "integrity", + "Value": "sha256-meV79h1PYFaHUCfcpj/YErhye6pGiqwx8Hf/lBZ14Uw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-night.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/3024-night.j5m5j26uus.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/3024-night.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "605" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5m5j26uus" + }, + { + "Name": "integrity", + "Value": "sha256-sxZQGrG+CS5l5nMsnOH4ZxooWIsp0CKjXnJ52NL1mRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/3024-night.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.css", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001841620626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.css", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.gnzpetyg3f.css", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001841620626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnzpetyg3f" + }, + { + "Name": "integrity", + "Value": "sha256-vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/abcdef.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.gnzpetyg3f.css", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2001" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnzpetyg3f" + }, + { + "Name": "integrity", + "Value": "sha256-vAKxGzrt8pEpmdiXg89NIJxgBNujOTm7uJY7WTJBVkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/abcdef.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/abcdef.gnzpetyg3f.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/abcdef.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gnzpetyg3f" + }, + { + "Name": "integrity", + "Value": "sha256-3RWfhlDRAHpXJg7m11Zj7p5qa52eb5N4xWcbHq31HJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/abcdef.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.011235955056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "88" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "108" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "88" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.g896lwz2u7.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.011235955056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "88" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g896lwz2u7" + }, + { + "Name": "integrity", + "Value": "sha256-wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance-mobile.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.g896lwz2u7.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "108" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g896lwz2u7" + }, + { + "Name": "integrity", + "Value": "sha256-wCZ3tzBwyPTTwcAsJCADJMwylmVYEvQuM+g/+k5xrVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance-mobile.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance-mobile.g896lwz2u7.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "88" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g896lwz2u7" + }, + { + "Name": "integrity", + "Value": "sha256-W4cc57N1pBPyGgN+/IYKqjt26ARzdfXZw4Hlul0gSsY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance-mobile.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.9yvnojcqa1.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053089828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18835" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yvnojcqa1" + }, + { + "Name": "integrity", + "Value": "sha256-gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.9yvnojcqa1.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yvnojcqa1" + }, + { + "Name": "integrity", + "Value": "sha256-gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.9yvnojcqa1.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18835" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yvnojcqa1" + }, + { + "Name": "integrity", + "Value": "sha256-4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ambiance.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053089828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18835" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "26567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gYUHTXeitl0fbzfi8fkki6hctZY+595wRxRqsRY7i0w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ambiance.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ambiance.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18835" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4LoKXELMlM9RvGi2/SRNZuKv9jYRexQ6qUqDfCNSF8E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2289" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.dd43fppwvz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dd43fppwvz" + }, + { + "Name": "integrity", + "Value": "sha256-4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.dd43fppwvz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2289" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dd43fppwvz" + }, + { + "Name": "integrity", + "Value": "sha256-4Tu4xnOzZjNS8cX9l44bYukYowOM8Dyd2vp2aC/81Ns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-dark.dd43fppwvz.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dd43fppwvz" + }, + { + "Name": "integrity", + "Value": "sha256-nLPGuFgo7MyQHP62VGxwnmIXEkhoLL+YkPGez2u3gWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.a4ee3bueob.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001587301587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a4ee3bueob" + }, + { + "Name": "integrity", + "Value": "sha256-+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-mirage.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.a4ee3bueob.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a4ee3bueob" + }, + { + "Name": "integrity", + "Value": "sha256-+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-mirage.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.a4ee3bueob.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a4ee3bueob" + }, + { + "Name": "integrity", + "Value": "sha256-2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001587301587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2404" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+o17vxnro4J16rr0quufdizSOZMyWSjgH2OY84oSlnI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ayu-mirage.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2vPzFKe73/+JfwyLnTGRvY0tINrONbO8vuTK4KBgqVw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.cq8t4djzuz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq8t4djzuz" + }, + { + "Name": "integrity", + "Value": "sha256-dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.cq8t4djzuz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq8t4djzuz" + }, + { + "Name": "integrity", + "Value": "sha256-dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.cq8t4djzuz.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq8t4djzuz" + }, + { + "Name": "integrity", + "Value": "sha256-kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dJlQE/k8rVhqSZgmUQQ7uhicNxZ/mjmgH5OpDCma3H8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kDF0d+ES1CS/GDMFShTfs7l24n9WyTrdr1pr2TprsoI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001709401709" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2162" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.ziy13k4iif.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001709401709" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ziy13k4iif" + }, + { + "Name": "integrity", + "Value": "sha256-C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.ziy13k4iif.css", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2162" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ziy13k4iif" + }, + { + "Name": "integrity", + "Value": "sha256-C9jd5tueQd4fNDZmwclhYx1nzm7ClxLXo9knSiAsdkA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/base16-light.ziy13k4iif.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/base16-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ziy13k4iif" + }, + { + "Name": "integrity", + "Value": "sha256-YcquCucfktAG5wz+upEOfctOVljbQylACiYJMwxX59Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/base16-light.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.1qyqz11xfa.css", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001883239171" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "530" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qyqz11xfa" + }, + { + "Name": "integrity", + "Value": "sha256-t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/bespin.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.1qyqz11xfa.css", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1447" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qyqz11xfa" + }, + { + "Name": "integrity", + "Value": "sha256-t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/bespin.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.1qyqz11xfa.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "530" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qyqz11xfa" + }, + { + "Name": "integrity", + "Value": "sha256-UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/bespin.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.css", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001883239171" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "530" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.css", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1447" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t9a0n3KWtq+t9jWTPksJnqKBACDt8lsJrw7eXTlRVtY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/bespin.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/bespin.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "530" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UmK847FzJm8Xd2GquBPMC6zgNi/ljUQ8IC3SgqOpjbw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.4ccbd1zrdm.css", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001968503937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ccbd1zrdm" + }, + { + "Name": "integrity", + "Value": "sha256-zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/blackboard.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.4ccbd1zrdm.css", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ccbd1zrdm" + }, + { + "Name": "integrity", + "Value": "sha256-zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/blackboard.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.4ccbd1zrdm.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ccbd1zrdm" + }, + { + "Name": "integrity", + "Value": "sha256-W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/blackboard.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.css", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001968503937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.css", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1963" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zCs7jGp9p1fC8xUmTBmXeEAnXwjfRmsDOuFtgqhlX4c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/blackboard.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/blackboard.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W6rhvJ3dUcxAqF22allUgl6WtZu0m74+AB+kB6MwfEI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.0v5cd5rdhf.css", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002079002079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v5cd5rdhf" + }, + { + "Name": "integrity", + "Value": "sha256-VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/cobalt.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.0v5cd5rdhf.css", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1751" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v5cd5rdhf" + }, + { + "Name": "integrity", + "Value": "sha256-VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/cobalt.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.0v5cd5rdhf.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0v5cd5rdhf" + }, + { + "Name": "integrity", + "Value": "sha256-/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/cobalt.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002079002079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1751" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VAZo4k8fRl7JzoTwG4PKIAXffRgiyczosNziD3ECeh4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/cobalt.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/cobalt.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Ov7JoRLbG43PnRHqBfExivEDEZKr+sZ9lRS/iw8OJY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.css", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.css", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1710" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.vuir5dz700.css", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vuir5dz700" + }, + { + "Name": "integrity", + "Value": "sha256-NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/colorforth.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.vuir5dz700.css", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1710" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vuir5dz700" + }, + { + "Name": "integrity", + "Value": "sha256-NwFxT5213g9LjIKcsHTWjDwUIZyI98T3eGipATjGg28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/colorforth.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/colorforth.vuir5dz700.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/colorforth.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vuir5dz700" + }, + { + "Name": "integrity", + "Value": "sha256-o+Uvpe7VQnUwtKo9Q8zq/nWuOJecD7VQAhqLROQ5bW8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/colorforth.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.css", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001221001221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.css", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2739" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.fv9whlje5q.css", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001221001221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fv9whlje5q" + }, + { + "Name": "integrity", + "Value": "sha256-BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/darcula.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.fv9whlje5q.css", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2739" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fv9whlje5q" + }, + { + "Name": "integrity", + "Value": "sha256-BTFTDJYWT7ie26EOkifVIgwbe0qiG0GUU0GWgN1TleY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/darcula.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/darcula.fv9whlje5q.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/darcula.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fv9whlje5q" + }, + { + "Name": "integrity", + "Value": "sha256-EsashTbuy+h5USq7NnZSEXb89uWyCU3c1nhxROk0whQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/darcula.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.css", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001718213058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.css", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2082" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.xo2z5tozmt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001718213058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo2z5tozmt" + }, + { + "Name": "integrity", + "Value": "sha256-nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/dracula.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.xo2z5tozmt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2082" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo2z5tozmt" + }, + { + "Name": "integrity", + "Value": "sha256-nw68Wo4ndcS+lylNSVkYzMrpQXlZM7UrhA7e5JLwFG4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/dracula.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/dracula.xo2z5tozmt.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/dracula.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo2z5tozmt" + }, + { + "Name": "integrity", + "Value": "sha256-748M62zE9WWlPrC2jyj5w0sIvkA4+lxncO7ZDGE+A6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/dracula.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.58wl607x3p.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001203369434" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58wl607x3p" + }, + { + "Name": "integrity", + "Value": "sha256-m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.58wl607x3p.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2649" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58wl607x3p" + }, + { + "Name": "integrity", + "Value": "sha256-m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.58wl607x3p.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58wl607x3p" + }, + { + "Name": "integrity", + "Value": "sha256-AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001203369434" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2649" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/NfK7AfDnTXZbXuGt5HqTozVw20UrMopVMARIcjACs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AsWtsCJXvzYNGbi1T1+ZfxZtSVRdvYqwSooW03fB8w8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.7kyffsyypg.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001203369434" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kyffsyypg" + }, + { + "Name": "integrity", + "Value": "sha256-t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.7kyffsyypg.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2755" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kyffsyypg" + }, + { + "Name": "integrity", + "Value": "sha256-t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.7kyffsyypg.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kyffsyypg" + }, + { + "Name": "integrity", + "Value": "sha256-svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/duotone-light.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001203369434" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2755" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1vjBLhLz5V7ZpYI+O8gXjeG7mXwyfQMe1voKCKKkPU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/duotone-light.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/duotone-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-svkoKlLBRdFEJpCQ8QY8/uD77P9Tr4XydoEOeEaWXHA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.5l62aia5we.css", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5l62aia5we" + }, + { + "Name": "integrity", + "Value": "sha256-J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/eclipse.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.5l62aia5we.css", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5l62aia5we" + }, + { + "Name": "integrity", + "Value": "sha256-J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/eclipse.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.5l62aia5we.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5l62aia5we" + }, + { + "Name": "integrity", + "Value": "sha256-LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/eclipse.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.css", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.css", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J8DYCAyZTYSXy9pNM/ykZNniV9TSboCHMOQGiC7rNXs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/eclipse.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/eclipse.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LLrq4G2JQK2lgyJ9U93pgjDBGNdFIUx/T9k6iVZcMn0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.6fwswdw5l6.css", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003378378378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fwswdw5l6" + }, + { + "Name": "integrity", + "Value": "sha256-3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/elegant.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.6fwswdw5l6.css", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fwswdw5l6" + }, + { + "Name": "integrity", + "Value": "sha256-3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/elegant.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.6fwswdw5l6.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fwswdw5l6" + }, + { + "Name": "integrity", + "Value": "sha256-2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/elegant.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.css", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003378378378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.css", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3rjmKHczQ5WFmLqHNbjn780a18nQF+dRka68w7gDazk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/elegant.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/elegant.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2fcBSzG7DGcvYNcdM0UIFqYeiYZbZC90McTmQpkECX0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.8jo9361taf.css", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001814882033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jo9361taf" + }, + { + "Name": "integrity", + "Value": "sha256-jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/erlang-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.8jo9361taf.css", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jo9361taf" + }, + { + "Name": "integrity", + "Value": "sha256-jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/erlang-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.8jo9361taf.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jo9361taf" + }, + { + "Name": "integrity", + "Value": "sha256-/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001814882033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2320" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jBBK79jPZlyYDlpfPe0KYWeccUAzvYhaHpZp37n2WpQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/erlang-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/XzTKdwGKx2Ur9vj1OZ8U2pduslL5REQVQOVhFdrNOw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001923076923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.imu3fe5rdy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001923076923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imu3fe5rdy" + }, + { + "Name": "integrity", + "Value": "sha256-Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/gruvbox-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.imu3fe5rdy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imu3fe5rdy" + }, + { + "Name": "integrity", + "Value": "sha256-Nsv2WgYTVRHBoUhg1ZDHojjANbOAYHGTsVspdJkCDCs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/gruvbox-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/gruvbox-dark.imu3fe5rdy.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imu3fe5rdy" + }, + { + "Name": "integrity", + "Value": "sha256-WKK7Q4d4rRqOOONswXyYOIm/1Om9Ushsjwm9mQULgc8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/gruvbox-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.css", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.css", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.t178kqmxn7.css", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001862197393" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t178kqmxn7" + }, + { + "Name": "integrity", + "Value": "sha256-T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/hopscotch.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.t178kqmxn7.css", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t178kqmxn7" + }, + { + "Name": "integrity", + "Value": "sha256-T07A7XDUX+61ACnclpWlLdUfUb1uZBHZLeAc04JIKNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/hopscotch.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/hopscotch.t178kqmxn7.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/hopscotch.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t178kqmxn7" + }, + { + "Name": "integrity", + "Value": "sha256-35nGRN1O8dPDx2wjWxQEG+fe/m2BeAKQmix/KCqRdCw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/hopscotch.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.css", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001443001443" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.css", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2558" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.tfogroiy5r.css", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001443001443" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfogroiy5r" + }, + { + "Name": "integrity", + "Value": "sha256-RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/icecoder.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.tfogroiy5r.css", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2558" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfogroiy5r" + }, + { + "Name": "integrity", + "Value": "sha256-RyUsGqun/veJN8JN5aoMg4WeIrFFdgctxZJ7uo+2aO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/icecoder.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/icecoder.tfogroiy5r.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/icecoder.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfogroiy5r" + }, + { + "Name": "integrity", + "Value": "sha256-AxDfvGhn+Yorr7HzNtR0OrB7CUFdgWCVbelDjJt7Jc0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/icecoder.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.css", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001748251748" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.css", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1713" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.jyw5ftnj5i.css", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001748251748" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyw5ftnj5i" + }, + { + "Name": "integrity", + "Value": "sha256-5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/idea.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.jyw5ftnj5i.css", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1713" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyw5ftnj5i" + }, + { + "Name": "integrity", + "Value": "sha256-5ZYwxQrQ+XDPlePMjdsSW6csDoL4+vlFoQaBKISwQsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/idea.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/idea.jyw5ftnj5i.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/idea.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyw5ftnj5i" + }, + { + "Name": "integrity", + "Value": "sha256-Jst8Vzv7xBuIzk5pGJ3J9prUYdtw+0wyuK9X62CwJ7o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/idea.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.css", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.css", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1476" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.oh3u1coiha.css", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oh3u1coiha" + }, + { + "Name": "integrity", + "Value": "sha256-LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/isotope.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.oh3u1coiha.css", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1476" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oh3u1coiha" + }, + { + "Name": "integrity", + "Value": "sha256-LL4RyMHeq+5y0TCYe86VkRAoc7ILl/gmNZIMgO7/YR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/isotope.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/isotope.oh3u1coiha.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/isotope.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oh3u1coiha" + }, + { + "Name": "integrity", + "Value": "sha256-estzmL9/F2ESPM9/GUkvQVhhoYvVTEw+dlDRLz2CCNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/isotope.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001367989056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "730" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2684" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "730" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.fvxbaz84uu.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001367989056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "730" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fvxbaz84uu" + }, + { + "Name": "integrity", + "Value": "sha256-O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lesser-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.fvxbaz84uu.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2684" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fvxbaz84uu" + }, + { + "Name": "integrity", + "Value": "sha256-O7a06mpM9m5SMwyZVekgHI2LT4JEDN6n/xeZXB/dhGI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lesser-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lesser-dark.fvxbaz84uu.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "730" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fvxbaz84uu" + }, + { + "Name": "integrity", + "Value": "sha256-aB/mxYmBpxwOBoyH3W7DNTkhZJOcf8QcUjCz6xTZBrA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lesser-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.css", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001152073733" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.css", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.qvqmgqh86v.css", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001152073733" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qvqmgqh86v" + }, + { + "Name": "integrity", + "Value": "sha256-lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/liquibyte.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.qvqmgqh86v.css", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qvqmgqh86v" + }, + { + "Name": "integrity", + "Value": "sha256-lvkSTnk+YspQfySsjGqEtAoD98gcCyOmiVHtmfTVnVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/liquibyte.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/liquibyte.qvqmgqh86v.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/liquibyte.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qvqmgqh86v" + }, + { + "Name": "integrity", + "Value": "sha256-C7UllBsP1D793PZkfObSlFbM3FnCmhTiTZfT0rGG/0c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/liquibyte.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001821493625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.klewjscsfn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001821493625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klewjscsfn" + }, + { + "Name": "integrity", + "Value": "sha256-6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lucario.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.klewjscsfn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klewjscsfn" + }, + { + "Name": "integrity", + "Value": "sha256-6LSGttcBKb8+T2QrWJU2YCny8tbVxm12hb84+2MytS0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lucario.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/lucario.klewjscsfn.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/lucario.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klewjscsfn" + }, + { + "Name": "integrity", + "Value": "sha256-qoLfmTSKTPTG/Xczf7DU+NOycFSthHu3xGhGmZZIN/o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/lucario.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.0wcyq4itly.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001569858713" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "636" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wcyq4itly" + }, + { + "Name": "integrity", + "Value": "sha256-wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-darker.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.0wcyq4itly.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wcyq4itly" + }, + { + "Name": "integrity", + "Value": "sha256-wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-darker.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.0wcyq4itly.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "636" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wcyq4itly" + }, + { + "Name": "integrity", + "Value": "sha256-NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-darker.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001569858713" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "636" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2741" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wL/m3Rd4iSNjgbD0cOadWvN6uPGJ+kqC7ov0RsY07aU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-darker.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-darker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "636" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NMmL61xBqo0fHdqMnPJz1eM5Gq5pv4MzgjFuqJ52r/E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2710" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.rkdlp8bx6k.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkdlp8bx6k" + }, + { + "Name": "integrity", + "Value": "sha256-+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-ocean.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.rkdlp8bx6k.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2710" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkdlp8bx6k" + }, + { + "Name": "integrity", + "Value": "sha256-+wC3P/g+IWQsSWOZCRuVhBB9aR0UoLcReW9qpExyYpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-ocean.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-ocean.rkdlp8bx6k.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-ocean.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkdlp8bx6k" + }, + { + "Name": "integrity", + "Value": "sha256-5IW0aD7PvNS99+duzzsURVYAvdnLndh56/xoF0dZXWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-ocean.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2858" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.q46avjbvno.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q46avjbvno" + }, + { + "Name": "integrity", + "Value": "sha256-dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-palenight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.q46avjbvno.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2858" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q46avjbvno" + }, + { + "Name": "integrity", + "Value": "sha256-dqdNNidDoc/DkG2cLkeW5lJc0xjqCOOeuZ9RWOi4+3M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-palenight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material-palenight.q46avjbvno.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material-palenight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q46avjbvno" + }, + { + "Name": "integrity", + "Value": "sha256-xYzK8t+59y/nbasQL7ApScrc860LyIqIpa/+nEOdLsI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material-palenight.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.9gsl9tjhbp.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001582278481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "631" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gsl9tjhbp" + }, + { + "Name": "integrity", + "Value": "sha256-STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.9gsl9tjhbp.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gsl9tjhbp" + }, + { + "Name": "integrity", + "Value": "sha256-STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.9gsl9tjhbp.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "631" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gsl9tjhbp" + }, + { + "Name": "integrity", + "Value": "sha256-y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001582278481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "631" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.css", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-STAauHs5+Ath3MFD/tOk6uFiahaT/CXnObReFoADwS8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/material.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "631" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y4ym4xF8HLKqHLa1NjCuwtHpoSmDGklBHhG1oELxE8w=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.4i04qskji3.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4i04qskji3" + }, + { + "Name": "integrity", + "Value": "sha256-jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mbo.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.4i04qskji3.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4i04qskji3" + }, + { + "Name": "integrity", + "Value": "sha256-jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mbo.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.4i04qskji3.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4i04qskji3" + }, + { + "Name": "integrity", + "Value": "sha256-PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mbo.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2149" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jCWRK4c8NeonkrCGCUSr3J5teL6o7cqsCE93p7WpI8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mbo.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/mbo.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PRpHiPSXm6vX8G7wwwBG/pN1CoRgyoDdqqw7Rg0f/B4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000331564987" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3015" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5242" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3015" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.meuwuw0dpy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000331564987" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3015" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwuw0dpy" + }, + { + "Name": "integrity", + "Value": "sha256-7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mdn-like.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.meuwuw0dpy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5242" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwuw0dpy" + }, + { + "Name": "integrity", + "Value": "sha256-7v9Wtw34R3NAVxjssM0qq6GnH4fdGsOcXHEA3xpM24g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mdn-like.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/mdn-like.meuwuw0dpy.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/mdn-like.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3015" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwuw0dpy" + }, + { + "Name": "integrity", + "Value": "sha256-qB8s+4DXG0606pyou10cwfoz3dPqzJ5UsRFgq5pBIuU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/mdn-like.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=\"" + }, + { + "Name": "ETag", + "Value": "W/\"99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1895" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.fiuimaf5rm.css", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=\"" + }, + { + "Name": "ETag", + "Value": "W/\"99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fiuimaf5rm" + }, + { + "Name": "integrity", + "Value": "sha256-99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/midnight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.fiuimaf5rm.css", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1895" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fiuimaf5rm" + }, + { + "Name": "integrity", + "Value": "sha256-99hHC8nrR0Bmky/eIkfB7YFQ5aALtDWby9pXEhB1Rik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/midnight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/midnight.fiuimaf5rm.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/midnight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fiuimaf5rm" + }, + { + "Name": "integrity", + "Value": "sha256-BUbLoVKMN5YMCmUvMI5SrHZzapsoihueNI7AO8FESao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/midnight.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.css", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001721170396" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "580" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.css", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "580" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.ra5m14m9dx.css", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001721170396" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "580" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5m14m9dx" + }, + { + "Name": "integrity", + "Value": "sha256-U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/monokai.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.ra5m14m9dx.css", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5m14m9dx" + }, + { + "Name": "integrity", + "Value": "sha256-U5VwuHeMMBltvAT4VLzu3PuAxIm+It5x8CUox/R/k5E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/monokai.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/monokai.ra5m14m9dx.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/monokai.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "580" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5m14m9dx" + }, + { + "Name": "integrity", + "Value": "sha256-3Zr5UtoiV426xz7b8Bs0yDG08ThUOvUpehI/Vq32xY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/monokai.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.css", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001422475107" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.css", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2511" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.eae1d3rpx5.css", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001422475107" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eae1d3rpx5" + }, + { + "Name": "integrity", + "Value": "sha256-lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/moxer.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.eae1d3rpx5.css", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2511" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eae1d3rpx5" + }, + { + "Name": "integrity", + "Value": "sha256-lge+ipBJ6x9sTzz/NlgSx2JWeors7UcYBEkbtc8m3Vw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/moxer.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/moxer.eae1d3rpx5.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/moxer.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "702" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eae1d3rpx5" + }, + { + "Name": "integrity", + "Value": "sha256-nksk/bUQfr9zuJVkm2eADmZJv9TNnx7NH8GDvwYo9ME=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/moxer.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "700" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.viy8353zvy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "viy8353zvy" + }, + { + "Name": "integrity", + "Value": "sha256-x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neat.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.viy8353zvy.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "700" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "viy8353zvy" + }, + { + "Name": "integrity", + "Value": "sha256-x2cfDCwwjKAmjMwhSrTsiOgn12oPU1t7o/T6Cm/BxAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neat.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neat.viy8353zvy.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/neat.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "viy8353zvy" + }, + { + "Name": "integrity", + "Value": "sha256-FHTOr+3mMNM/lB2fWVA17DZZkgot84RKOAEe9WHSYuE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neat.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.9ylcqnp8g3.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ylcqnp8g3" + }, + { + "Name": "integrity", + "Value": "sha256-IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neo.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.9ylcqnp8g3.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "990" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ylcqnp8g3" + }, + { + "Name": "integrity", + "Value": "sha256-IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neo.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.9ylcqnp8g3.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ylcqnp8g3" + }, + { + "Name": "integrity", + "Value": "sha256-LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/neo.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "990" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IaBuDHvtVJJDUKVLdT9xvisqi+IsV02Je8M3sqnozYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/neo.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/neo.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LMbZblHWrzndIRCiFIni2WG8XATgF5aDn6eIkItlOig=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.css", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.css", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.ga0nnau9zo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga0nnau9zo" + }, + { + "Name": "integrity", + "Value": "sha256-yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/night.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.ga0nnau9zo.css", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga0nnau9zo" + }, + { + "Name": "integrity", + "Value": "sha256-yJ8Qn4zFgYnVR6MmVRksU7ADlyOZrdLAakGh8Bb8YAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/night.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/night.ga0nnau9zo.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/night.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ga0nnau9zo" + }, + { + "Name": "integrity", + "Value": "sha256-1KppdEylQE7apfr6aGNWXJat4AkOhfdXyMjtJYZdLqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/night.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.css", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001773049645" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.css", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.pehb8bcddr.css", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001773049645" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pehb8bcddr" + }, + { + "Name": "integrity", + "Value": "sha256-H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/nord.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.pehb8bcddr.css", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pehb8bcddr" + }, + { + "Name": "integrity", + "Value": "sha256-H79OrPXmpADy6Gmc6ugSSjbigaXPzx9rqy8ys29kmg0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/nord.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/nord.pehb8bcddr.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/nord.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pehb8bcddr" + }, + { + "Name": "integrity", + "Value": "sha256-fm+Ans8uqtvcSiT45TKNrXdsHftjKqoVWghJ0imBIgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/nord.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.css", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001669449082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.css", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.hkwcesbp3r.css", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001669449082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hkwcesbp3r" + }, + { + "Name": "integrity", + "Value": "sha256-4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/oceanic-next.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.hkwcesbp3r.css", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hkwcesbp3r" + }, + { + "Name": "integrity", + "Value": "sha256-4d0C0tQfRm8wCt0cd5A23iYM3IJyQEjJ4WGH0vpdhs8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/oceanic-next.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/oceanic-next.hkwcesbp3r.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hkwcesbp3r" + }, + { + "Name": "integrity", + "Value": "sha256-1MDnkrrM7/48GcO7VqIB6eoKqwjTUnYqUVSDIeDPnbw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/oceanic-next.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.css", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001592356688" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.css", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.hii230ikto.css", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001592356688" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hii230ikto" + }, + { + "Name": "integrity", + "Value": "sha256-Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/panda-syntax.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.hii230ikto.css", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hii230ikto" + }, + { + "Name": "integrity", + "Value": "sha256-Oc13OBSv2/1WR4ODq0Fg6bdZwqjQ7wRS7C79/bfjFHo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/panda-syntax.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/panda-syntax.hii230ikto.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hii230ikto" + }, + { + "Name": "integrity", + "Value": "sha256-MQ7aCDPo+ylr4XgodXwnSOl/eEXsCnGPIEoLCMv+wrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/panda-syntax.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2116" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.y5latwsd68.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5latwsd68" + }, + { + "Name": "integrity", + "Value": "sha256-pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.y5latwsd68.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2116" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5latwsd68" + }, + { + "Name": "integrity", + "Value": "sha256-pkY473U7WUJ1DiPw5mZ4uDba+AavPSTVfRJ0AJSEFUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-dark.y5latwsd68.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5latwsd68" + }, + { + "Name": "integrity", + "Value": "sha256-kRPwyfT1ZlqdNZC8kMmbnhVOPKifEe3DtnFnJbh0HWM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2116" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.e2gfxeu5b2.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2gfxeu5b2" + }, + { + "Name": "integrity", + "Value": "sha256-6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.e2gfxeu5b2.css", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2116" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2gfxeu5b2" + }, + { + "Name": "integrity", + "Value": "sha256-6ie0d4uOeESYxch14Kiv9R2xVDv1LXP3NlvuM3UAqao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/paraiso-light.e2gfxeu5b2.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2gfxeu5b2" + }, + { + "Name": "integrity", + "Value": "sha256-AvRW2W74IIOCga6aBwaHYx0WlUutmaIh0EMs2QnxZRU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/paraiso-light.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.9wc2howbif.css", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001383125864" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9wc2howbif" + }, + { + "Name": "integrity", + "Value": "sha256-N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/pastel-on-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.9wc2howbif.css", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2537" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9wc2howbif" + }, + { + "Name": "integrity", + "Value": "sha256-N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/pastel-on-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.9wc2howbif.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9wc2howbif" + }, + { + "Name": "integrity", + "Value": "sha256-y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001383125864" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2537" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N4Fe9HhTTDSHX6648OHTU/9ZKMigKgErb+lPAn64lmc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/pastel-on-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y30qOh+qKeG5Kh0i70hLQaZKLaYh1e3UJ9ZEVICAiRs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.css", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001824817518" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.css", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.soohcewvhk.css", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001824817518" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "soohcewvhk" + }, + { + "Name": "integrity", + "Value": "sha256-xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/railscasts.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.soohcewvhk.css", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1548" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "soohcewvhk" + }, + { + "Name": "integrity", + "Value": "sha256-xCSuMrUo8iaZZJB+x9blV0DgVP7yWb7MjkG80cs6t0o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/railscasts.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/railscasts.soohcewvhk.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/railscasts.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "soohcewvhk" + }, + { + "Name": "integrity", + "Value": "sha256-f15DsldkbDWTgaFWfFDk/aMp0ncfX62csBXE6ixNJyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/railscasts.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.38xrlx2mpu.css", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "38xrlx2mpu" + }, + { + "Name": "integrity", + "Value": "sha256-89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/rubyblue.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.38xrlx2mpu.css", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1826" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "38xrlx2mpu" + }, + { + "Name": "integrity", + "Value": "sha256-89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/rubyblue.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.38xrlx2mpu.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "38xrlx2mpu" + }, + { + "Name": "integrity", + "Value": "sha256-j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/rubyblue.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.css", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.css", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1826" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-89nlTyeHwTEQPGyK2nvuFY+ysgaqRJ0lM9ZtoM9XkxA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/rubyblue.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/rubyblue.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j3IGjOs9hWXtWkD/g5zRYbsU4rpr+BYDdzVc1USZ9gw=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.bbjv1549ml.css", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbjv1549ml" + }, + { + "Name": "integrity", + "Value": "sha256-eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/seti.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.bbjv1549ml.css", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2053" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbjv1549ml" + }, + { + "Name": "integrity", + "Value": "sha256-eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/seti.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.bbjv1549ml.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbjv1549ml" + }, + { + "Name": "integrity", + "Value": "sha256-bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/seti.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.css", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001652892562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.css", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2053" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eTeUWqekP0Snkrz8xbtCemHIf3cS8tZHm6Su/N8w+Rc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/seti.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/seti.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bNUk8X4ht3mGKz7hP5abn4Tr8VhZl3x7L1ewz9uWBi0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.b7238irrvt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7238irrvt" + }, + { + "Name": "integrity", + "Value": "sha256-GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/shadowfox.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.b7238irrvt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2492" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7238irrvt" + }, + { + "Name": "integrity", + "Value": "sha256-GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/shadowfox.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.b7238irrvt.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7238irrvt" + }, + { + "Name": "integrity", + "Value": "sha256-pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/shadowfox.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.css", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.css", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2492" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GdIGl0oIGvz/f0Jns/B1nt00Fz5/PTnnisKnzAbofTE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/shadowfox.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/shadowfox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pQykNCGN4WE497PAuIDRUpj3kTQbBxooSPLQqoRQwk0=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.css", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000743494424" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.css", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5596" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.pwhjyabihv.css", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000743494424" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwhjyabihv" + }, + { + "Name": "integrity", + "Value": "sha256-adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/solarized.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.pwhjyabihv.css", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5596" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwhjyabihv" + }, + { + "Name": "integrity", + "Value": "sha256-adsyW55VvJBT9u0FeEj2k0cup705uSiTDyNUkfFJrgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/solarized.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/solarized.pwhjyabihv.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/solarized.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1344" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwhjyabihv" + }, + { + "Name": "integrity", + "Value": "sha256-Vpu3lAFD1MkT6YSdiejegADaFX2ApI+GWPqDwEL3UHE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/solarized.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.r1c9s66bet.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1c9s66bet" + }, + { + "Name": "integrity", + "Value": "sha256-wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ssms.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.r1c9s66bet.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1c9s66bet" + }, + { + "Name": "integrity", + "Value": "sha256-wcZiPGWd7Tfhk+DKpScBBEU4aEBsNS+ncwza/gqW9ac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ssms.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ssms.r1c9s66bet.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ssms.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1c9s66bet" + }, + { + "Name": "integrity", + "Value": "sha256-dUGJNmM3XOMcjOyBmgOwIQ2Y2ZntXlp8JLpGDhJFJ10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ssms.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.css", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.css", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.mtsgkzdoir.css", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtsgkzdoir" + }, + { + "Name": "integrity", + "Value": "sha256-FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/the-matrix.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.mtsgkzdoir.css", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1970" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtsgkzdoir" + }, + { + "Name": "integrity", + "Value": "sha256-FjrX0/lokiHb2icblq6UuoCD72UuYpiRcSyZoxJisjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/the-matrix.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/the-matrix.mtsgkzdoir.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/the-matrix.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtsgkzdoir" + }, + { + "Name": "integrity", + "Value": "sha256-NmCZfbKULtDLSUGGiJ+KXM9JIntKNfRf+k+/mZNX3VM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/the-matrix.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001984126984" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1804" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.stodfn3gne.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001984126984" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stodfn3gne" + }, + { + "Name": "integrity", + "Value": "sha256-EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.stodfn3gne.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1804" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stodfn3gne" + }, + { + "Name": "integrity", + "Value": "sha256-EOYgTFMiCZyQrM3IEdu+VpvB+gKOBqE6sXbJP2TqBWo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.stodfn3gne.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stodfn3gne" + }, + { + "Name": "integrity", + "Value": "sha256-RfOuWY1MXazNBpPZLcgYsjgWfitmrQo3ribx52Q7//U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-bright.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.6njo497js4.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6njo497js4" + }, + { + "Name": "integrity", + "Value": "sha256-jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.6njo497js4.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2477" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6njo497js4" + }, + { + "Name": "integrity", + "Value": "sha256-jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.6njo497js4.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6njo497js4" + }, + { + "Name": "integrity", + "Value": "sha256-AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2477" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jg7k144EVamO4TODBL8husMEKld2cRe3Adkgcwn0F/o=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AfKtHdLD/KX3cFTzYQLxF1cpv3h1D+6ai2tkXOy/tAU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2504" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.x4dnirvmxt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4dnirvmxt" + }, + { + "Name": "integrity", + "Value": "sha256-QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ttcn.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.x4dnirvmxt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2504" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4dnirvmxt" + }, + { + "Name": "integrity", + "Value": "sha256-QbA+WcEiQScVR2j3IT/Q6hROhsAlE4FED4Cgvx4hVXA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ttcn.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/ttcn.x4dnirvmxt.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/ttcn.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x4dnirvmxt" + }, + { + "Name": "integrity", + "Value": "sha256-70nQRvC1ZjmhuMzjoYJ2agiHSCfNkI5jYcZovLP1ocU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/ttcn.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.aes0620ue8.css", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aes0620ue8" + }, + { + "Name": "integrity", + "Value": "sha256-PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/twilight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.aes0620ue8.css", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2196" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aes0620ue8" + }, + { + "Name": "integrity", + "Value": "sha256-PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/twilight.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.aes0620ue8.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aes0620ue8" + }, + { + "Name": "integrity", + "Value": "sha256-yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/twilight.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.css", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2196" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PuKWHAXv7AzXCq0mjiwsKL1D05rwaZaO1jqmXz3DC3Q=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/twilight.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/twilight.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yjehO46uIfYqzxBLlLkqByKMVoC+TcnoADstTnLySJU=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.css", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001658374793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.css", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.qq972dm9q2.css", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001658374793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qq972dm9q2" + }, + { + "Name": "integrity", + "Value": "sha256-7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/vibrant-ink.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.qq972dm9q2.css", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2176" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qq972dm9q2" + }, + { + "Name": "integrity", + "Value": "sha256-7pyfCoF1CGPNFGiSgFT3p7b6B5sLQ1T01GE7KXI8TbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/vibrant-ink.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/vibrant-ink.qq972dm9q2.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qq972dm9q2" + }, + { + "Name": "integrity", + "Value": "sha256-YO8BPbgR3dalPizChyZcso4wZUk2Ea76e10tqpqt3Rs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/vibrant-ink.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.3sn0sbrt3e.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000834724541" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3sn0sbrt3e" + }, + { + "Name": "integrity", + "Value": "sha256-ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.3sn0sbrt3e.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3sn0sbrt3e" + }, + { + "Name": "integrity", + "Value": "sha256-ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-dark.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.3sn0sbrt3e.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3sn0sbrt3e" + }, + { + "Name": "integrity", + "Value": "sha256-5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-dark.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000834724541" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ne8dti/I8m3RVANHcHMjk1oozlOKipO3nRyaYDvF14A=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-dark.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5O/QCgKSur2LxqeF50nJjaKatS5PhajqB+YtesNDcTE=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938967136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1064" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2298" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1064" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.lngk9tjgyt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000938967136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1064" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lngk9tjgyt" + }, + { + "Name": "integrity", + "Value": "sha256-rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.lngk9tjgyt.css", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2298" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lngk9tjgyt" + }, + { + "Name": "integrity", + "Value": "sha256-rwGOpTad25P2xue+Q4wFKg1o4oJ17l2euvZtxX1b6IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-light.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/xq-light.lngk9tjgyt.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/xq-light.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1064" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lngk9tjgyt" + }, + { + "Name": "integrity", + "Value": "sha256-zgBFsYx23KyVdf9bTEqlIcWneVPNe6FX+q9Eb9/kcc4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/xq-light.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.230fzv8i81.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001785714286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "230fzv8i81" + }, + { + "Name": "integrity", + "Value": "sha256-Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yeti.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.230fzv8i81.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1928" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "230fzv8i81" + }, + { + "Name": "integrity", + "Value": "sha256-Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yeti.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.230fzv8i81.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "230fzv8i81" + }, + { + "Name": "integrity", + "Value": "sha256-me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yeti.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001785714286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1928" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lo16iagLN+sLV9mpg379oKW8YRxZ0adQhzMZovo0pQY=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yeti.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/yeti.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-me0YLQEpwKW6xM+jGzaWfbnvU+uoye2L4hG4E++iBGk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001166861144" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "856" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3134" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "856" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.rnbzl47vdz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001166861144" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "856" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnbzl47vdz" + }, + { + "Name": "integrity", + "Value": "sha256-xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yonce.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.rnbzl47vdz.css", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3134" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnbzl47vdz" + }, + { + "Name": "integrity", + "Value": "sha256-xxr6H9rUgjQNIZdRdOGHY9Cgyqow3+adNR70hcOw/0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yonce.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/yonce.rnbzl47vdz.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/yonce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "856" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnbzl47vdz" + }, + { + "Name": "integrity", + "Value": "sha256-i3ZIYNAsK94flaLFlE/VXTys0B3rmJVxrmZmz+EM6X4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/yonce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.css", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2038" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.nqlm1o0f9c.css", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nqlm1o0f9c" + }, + { + "Name": "integrity", + "Value": "sha256-j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/zenburn.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.nqlm1o0f9c.css", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2038" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nqlm1o0f9c" + }, + { + "Name": "integrity", + "Value": "sha256-j9jHjRdR1RMOLf9G8OM6Ph9qJ6kl8TcMHtIfN6b5nYc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/zenburn.css" + } + ] + }, + { + "Route": "adminlte/plugins/codemirror/theme/zenburn.nqlm1o0f9c.css.gz", + "AssetFile": "adminlte/plugins/codemirror/theme/zenburn.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nqlm1o0f9c" + }, + { + "Name": "integrity", + "Value": "sha256-VaiNGLkEUvhCdx/y/uNorCE9O2Ey0RUEASITN7C2ZSk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/codemirror/theme/zenburn.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001503759398" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2164" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.a801amfri5.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a801amfri5" + }, + { + "Name": "integrity", + "Value": "sha256-ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.a801amfri5.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a801amfri5" + }, + { + "Name": "integrity", + "Value": "sha256-ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.a801amfri5.css.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a801amfri5" + }, + { + "Name": "integrity", + "Value": "sha256-3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ljasreS7KlyirvzD/X7jNi+iASEpLT/rmdEkS1azv+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3HKTEaTacpwI4jDmxQ9wOawQFwOq5iJzBUl62b8e9eg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.tkvymg8n82.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001503759398" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tkvymg8n82" + }, + { + "Name": "integrity", + "Value": "sha256-XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.tkvymg8n82.css", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2164" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tkvymg8n82" + }, + { + "Name": "integrity", + "Value": "sha256-XSp3gqOTkGNPDiKBoreP+AWSjRtzt/OWdJjg19AlQPE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.tkvymg8n82.css.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "664" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tkvymg8n82" + }, + { + "Name": "integrity", + "Value": "sha256-kwsXWGNt1eCeg2tOUvQpiCrRup4W1wNIMPHNiHCZMI8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.gyh733u9uz.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002132196162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh733u9uz" + }, + { + "Name": "integrity", + "Value": "sha256-qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.gyh733u9uz.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh733u9uz" + }, + { + "Name": "integrity", + "Value": "sha256-qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.gyh733u9uz.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh733u9uz" + }, + { + "Name": "integrity", + "Value": "sha256-bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002132196162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEXgXxzGgmwTgOKAWmFUpr2suyVGCDKaOBp7WaqSYZI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bF0CqvQwDDtSEfgR7wLXvoBaN44kTRa7yP3I+PPfuBo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.gz2qas7m2q.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2qas7m2q" + }, + { + "Name": "integrity", + "Value": "sha256-ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.gz2qas7m2q.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2qas7m2q" + }, + { + "Name": "integrity", + "Value": "sha256-ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.gz2qas7m2q.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2qas7m2q" + }, + { + "Name": "integrity", + "Value": "sha256-epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZEQGAxhXDaSuf7+H/AuiK+tKvrI1SnOAdyYXo5IOWs8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-epffL9mX0Rw1puwBP6ES2mFLiaR/FT23MwJXTHWxRsg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000107492207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "31670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.4yyvzks77v.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000241487563" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yyvzks77v" + }, + { + "Name": "integrity", + "Value": "sha256-rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.4yyvzks77v.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yyvzks77v" + }, + { + "Name": "integrity", + "Value": "sha256-rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.4yyvzks77v.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yyvzks77v" + }, + { + "Name": "integrity", + "Value": "sha256-0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000241487563" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rBXpYcMrKLdDAag8R3v5EpBbysYiex434mfZ4oGIQ3A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0NRF3ue/RrY4PHQL4bQPd/m6LArMhOioI6aFuIPBLRU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.xdtecvo9l0.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000107492207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdtecvo9l0" + }, + { + "Name": "integrity", + "Value": "sha256-RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.xdtecvo9l0.js", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdtecvo9l0" + }, + { + "Name": "integrity", + "Value": "sha256-RbQGqw3tAu9J7CheWZMSvxm6Zs6IoN8AipNNCZzyvSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.xdtecvo9l0.js.gz", + "AssetFile": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdtecvo9l0" + }, + { + "Name": "integrity", + "Value": "sha256-q/upYcrN+5RJD2zZe9fLpOPyjecj7wOctFrh+wumtFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.77l1t0edj0.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000894454383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77l1t0edj0" + }, + { + "Name": "integrity", + "Value": "sha256-bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.77l1t0edj0.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6098" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77l1t0edj0" + }, + { + "Name": "integrity", + "Value": "sha256-bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.77l1t0edj0.css.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77l1t0edj0" + }, + { + "Name": "integrity", + "Value": "sha256-R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000894454383" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6098" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bYGIgUHFBmWCRsMSXI/bfyKm3iG9PtAA5F1BrhWdtAI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1117" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R4zx00r4CuLvq6ty1Jyjej7dgXYe4EaoPThlOlu3Nyg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000961538462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5233" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.o2q6674kjs.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000961538462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2q6674kjs" + }, + { + "Name": "integrity", + "Value": "sha256-gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.o2q6674kjs.css", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5233" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2q6674kjs" + }, + { + "Name": "integrity", + "Value": "sha256-gEul9whJqtQglPN+9225UUoNwA8sZxVUWtPt232bq8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.o2q6674kjs.css.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2q6674kjs" + }, + { + "Name": "integrity", + "Value": "sha256-DcRaeM+m9UbPH8Rzvlwvo9CKWmHMMnjG9TtIvAn+wC0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.hh0eek2szb.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000521104742" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hh0eek2szb" + }, + { + "Name": "integrity", + "Value": "sha256-C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.hh0eek2szb.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hh0eek2szb" + }, + { + "Name": "integrity", + "Value": "sha256-C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.hh0eek2szb.js.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hh0eek2szb" + }, + { + "Name": "integrity", + "Value": "sha256-fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000521104742" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C0iOFOOfg7fmglfsPSDRneAaZRaMo6tEgyiEQaZbBlE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1918" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fSRSf+lLQZdjHNdoJ5OUkRwCLGswkjOMCsngnv+KVYc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000896860987" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.q8lwh68o4z.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000896860987" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8lwh68o4z" + }, + { + "Name": "integrity", + "Value": "sha256-dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.q8lwh68o4z.js", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8lwh68o4z" + }, + { + "Name": "integrity", + "Value": "sha256-dsMm93i5fDKzWJChFeO9WfSkyQuGTRPvfatV2b/8PLE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.q8lwh68o4z.js.gz", + "AssetFile": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8lwh68o4z" + }, + { + "Name": "integrity", + "Value": "sha256-YgFxkm3ZcOdoqYH2YyjPQIXf4Sh9CnjktySmWNr8uN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.bfhnpxxgus.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001014198783" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "985" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfhnpxxgus" + }, + { + "Name": "integrity", + "Value": "sha256-CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.bfhnpxxgus.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4360" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfhnpxxgus" + }, + { + "Name": "integrity", + "Value": "sha256-CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.bfhnpxxgus.css.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "985" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfhnpxxgus" + }, + { + "Name": "integrity", + "Value": "sha256-lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001014198783" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "985" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4360" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CVvcCIPMXk7Wr7i9SWpWV4NBq6aQfyYMF70ucspWQZo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "985" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lpGdlfjo72akUYJWV8tZYGfwBEOf5qeClOLMunyKN10=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.41a4wrdrff.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001094091904" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41a4wrdrff" + }, + { + "Name": "integrity", + "Value": "sha256-yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.41a4wrdrff.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41a4wrdrff" + }, + { + "Name": "integrity", + "Value": "sha256-yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.41a4wrdrff.css.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41a4wrdrff" + }, + { + "Name": "integrity", + "Value": "sha256-Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001094091904" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yAdWBbvHLZIO7QGutHy51kYJFrM9U6r9k5k0S3df35U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wjr1l3UI2HOUg1lMULJZrLLlGoFjQB4YLPu+TlMAZ1E=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001436781609" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.jwzcem2x5w.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001436781609" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwzcem2x5w" + }, + { + "Name": "integrity", + "Value": "sha256-PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.jwzcem2x5w.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwzcem2x5w" + }, + { + "Name": "integrity", + "Value": "sha256-PXlsazIzatXF4p3zxU8d4S22CcBpIaxJ53NseL8FDME=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.jwzcem2x5w.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwzcem2x5w" + }, + { + "Name": "integrity", + "Value": "sha256-igFAfphQfEEFu6rU3AFzVGZwW88lF2jxRD51D1469O8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001841620626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1049" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.y584m2dz9u.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001841620626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y584m2dz9u" + }, + { + "Name": "integrity", + "Value": "sha256-VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.y584m2dz9u.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1049" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y584m2dz9u" + }, + { + "Name": "integrity", + "Value": "sha256-VrCzq65CjM93LLzy9ZNclBPAUu/Lt11YrYaGsC/5jYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.y584m2dz9u.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y584m2dz9u" + }, + { + "Name": "integrity", + "Value": "sha256-/RuE/S6JZyK7gcN/fuqp1NFmL1DBjxSw0tlzgYvWEHw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000568181818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5705" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.m12eixt24z.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000568181818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m12eixt24z" + }, + { + "Name": "integrity", + "Value": "sha256-2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.m12eixt24z.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5705" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m12eixt24z" + }, + { + "Name": "integrity", + "Value": "sha256-2sdnkcSLbCohgiLWN9XqLFcnu1B+NrxB975Cja4ohOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.m12eixt24z.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m12eixt24z" + }, + { + "Name": "integrity", + "Value": "sha256-o8/a3Rp0tpd+eMJH1E4An5PB0PPT3WONtZWlLgBT7NE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.dmpgbim1zl.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000994035785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dmpgbim1zl" + }, + { + "Name": "integrity", + "Value": "sha256-tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.dmpgbim1zl.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2844" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dmpgbim1zl" + }, + { + "Name": "integrity", + "Value": "sha256-tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.dmpgbim1zl.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dmpgbim1zl" + }, + { + "Name": "integrity", + "Value": "sha256-AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000994035785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2844" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tfj1t7lyls4NANDRGvXdxz9Jb6HXRnU/ko1wQYgce1A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AQZEhD+mpPCOAV2TdhD76/lc8rwpVaOTq7d/yxe8+sA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.7hxkwq9vyj.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083724046" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hxkwq9vyj" + }, + { + "Name": "integrity", + "Value": "sha256-e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.7hxkwq9vyj.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "47681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hxkwq9vyj" + }, + { + "Name": "integrity", + "Value": "sha256-e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.7hxkwq9vyj.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hxkwq9vyj" + }, + { + "Name": "integrity", + "Value": "sha256-cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000083724046" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "47681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e/6W1429i7pNFBhm6ACkLFWZxtClgsXpqe5ZKVhJrt0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQEbntxyoCtBfQ/sp4UuD43gOQCYuUjqljCfKipOlC4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.h6iwaiul7o.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148610492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6iwaiul7o" + }, + { + "Name": "integrity", + "Value": "sha256-CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.h6iwaiul7o.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6iwaiul7o" + }, + { + "Name": "integrity", + "Value": "sha256-CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.h6iwaiul7o.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6iwaiul7o" + }, + { + "Name": "integrity", + "Value": "sha256-2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000148610492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "26105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CRbNqa9qjlwbYUzWKpYlFrHfcUTaTwbCtN1+kxwUiQY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.flash.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6728" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2SXjrB5gbA8JL0I35Yl/hMDOaCBRQeIu4Qtb8mPHA2M=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.j5iy9p1oju.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000086520159" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5iy9p1oju" + }, + { + "Name": "integrity", + "Value": "sha256-mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.j5iy9p1oju.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "45871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5iy9p1oju" + }, + { + "Name": "integrity", + "Value": "sha256-mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.j5iy9p1oju.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5iy9p1oju" + }, + { + "Name": "integrity", + "Value": "sha256-ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000086520159" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "45871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mbLm3ZinViyVUvk9A0fhuVBveFUb+LBpITwvMdqzN1U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ynT8MRAFZ2O1tMkFpakpB/E4IVaFzaLpAGQQv69g1/I=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000151814179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6586" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24863" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6586" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.q6atm8wdn7.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000151814179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6586" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6atm8wdn7" + }, + { + "Name": "integrity", + "Value": "sha256-0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.q6atm8wdn7.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24863" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6atm8wdn7" + }, + { + "Name": "integrity", + "Value": "sha256-0g58OIRC7RMy4yGq8nrwVCHt3XHmRk12dFbw5tjRJKM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.q6atm8wdn7.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6586" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6atm8wdn7" + }, + { + "Name": "integrity", + "Value": "sha256-+qO1EOG1MekvKDv1Rd+Xz+Kcu39tu1lTHFSTCKnYJlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.html5.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.cfrveqd0wd.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457875458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfrveqd0wd" + }, + { + "Name": "integrity", + "Value": "sha256-aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.cfrveqd0wd.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfrveqd0wd" + }, + { + "Name": "integrity", + "Value": "sha256-aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.cfrveqd0wd.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cfrveqd0wd" + }, + { + "Name": "integrity", + "Value": "sha256-6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000457875458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aB2mwvRMlQOzSTcR3n5PEPGSEbpOwKtZulAbBYmaR4U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6pTNfPnFax9rGnBhL/ACo76BF0Y3EqdnZL1yB06CK50=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000897666068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.wbdd9lqbww.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000897666068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbdd9lqbww" + }, + { + "Name": "integrity", + "Value": "sha256-vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.wbdd9lqbww.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbdd9lqbww" + }, + { + "Name": "integrity", + "Value": "sha256-vAEU8NLgjm1ZfapC94KD732qepZG+xCT//aqYBIE48w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/buttons.print.min.wbdd9lqbww.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbdd9lqbww" + }, + { + "Name": "integrity", + "Value": "sha256-cxxUxm6KJcv2Q00DCx7Df+8JIeNkEJ5aw5/kIPYSM84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/buttons.print.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.b7coi7mr0e.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071133874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14057" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7coi7mr0e" + }, + { + "Name": "integrity", + "Value": "sha256-Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.b7coi7mr0e.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "55311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7coi7mr0e" + }, + { + "Name": "integrity", + "Value": "sha256-Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.b7coi7mr0e.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14057" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7coi7mr0e" + }, + { + "Name": "integrity", + "Value": "sha256-2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071133874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14057" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "55311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ob7yaXZhwC7stOs33Nn7VDL5DgCIi4aF9xT9URR+zd8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14057" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Wx6eGLOYsh9K2E3eEEeUpstkkfNlo5PNnZRQJ+pgqQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000149790294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "20355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.lfaixuwb9n.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000149790294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfaixuwb9n" + }, + { + "Name": "integrity", + "Value": "sha256-r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.lfaixuwb9n.js", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfaixuwb9n" + }, + { + "Name": "integrity", + "Value": "sha256-r0FSr1NKJxj0hPQsTOyiFw4Un53mWVl0OM/cQ0AgfWs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.lfaixuwb9n.js.gz", + "AssetFile": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfaixuwb9n" + }, + { + "Name": "integrity", + "Value": "sha256-5UI8kaQb0hwVc6XGUC4Rw21y7SvYt9FJmTB0/5cJqRY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "224" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006289308176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "158" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "182" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "158" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.tenyg7zbz7.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006289308176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "158" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tenyg7zbz7" + }, + { + "Name": "integrity", + "Value": "sha256-+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.tenyg7zbz7.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "182" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tenyg7zbz7" + }, + { + "Name": "integrity", + "Value": "sha256-+9jHPc7nHrCWKVc9m1Ws2/b9UPUvhEBevTaYCsSmDVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.tenyg7zbz7.css.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "158" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tenyg7zbz7" + }, + { + "Name": "integrity", + "Value": "sha256-fCgtcFp9R3oE24Iu1lUKBQAmfG83mLML+KvNSYp5zeQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.pyee0szohc.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pyee0szohc" + }, + { + "Name": "integrity", + "Value": "sha256-QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.pyee0szohc.css", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "224" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pyee0szohc" + }, + { + "Name": "integrity", + "Value": "sha256-QWMa4woSVBYLU9YE8J/cPrOA8Dlbw02M3bNbQLH0MGY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.pyee0szohc.css.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pyee0szohc" + }, + { + "Name": "integrity", + "Value": "sha256-n2Qv3g1dEy4g5K+svY/kSgp3kVeY/XbxWZcTDyPA5ts=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002358490566" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "886" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.ix3nudw5ga.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix3nudw5ga" + }, + { + "Name": "integrity", + "Value": "sha256-puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.ix3nudw5ga.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix3nudw5ga" + }, + { + "Name": "integrity", + "Value": "sha256-puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.ix3nudw5ga.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix3nudw5ga" + }, + { + "Name": "integrity", + "Value": "sha256-gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-puXM+ltJ29sQl0YlYPZU3Ybi17HfGezOMnq8g+LnbCU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gkGGkKhT/AzClDI99aEb+nceErRboSjQBPM8g3vnB5g=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.qwe2hur73y.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002358490566" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwe2hur73y" + }, + { + "Name": "integrity", + "Value": "sha256-+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.qwe2hur73y.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "886" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwe2hur73y" + }, + { + "Name": "integrity", + "Value": "sha256-+hBqKsZZx+w8kG4BkvhrtfeiuUNz59Nc6EYCWatXTDE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.qwe2hur73y.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwe2hur73y" + }, + { + "Name": "integrity", + "Value": "sha256-+w27xiZraM1ilTMmRZcaP3/3Jspa0+sK2aa7HtVJerI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.40p4nwdv4t.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090098207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "40p4nwdv4t" + }, + { + "Name": "integrity", + "Value": "sha256-bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.40p4nwdv4t.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "40864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "40p4nwdv4t" + }, + { + "Name": "integrity", + "Value": "sha256-bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.40p4nwdv4t.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "40p4nwdv4t" + }, + { + "Name": "integrity", + "Value": "sha256-94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090098207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "40864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bCFVfk7hrE/PsQtAiEuy6F9ELbR+I3NBzu01daAf7+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-94aFvsMfvStdJyNDIwNeVAiVgLlHfBiQngLZi0EoFI0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000231749710" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.qkct1krwuu.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000231749710" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkct1krwuu" + }, + { + "Name": "integrity", + "Value": "sha256-FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.qkct1krwuu.js", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkct1krwuu" + }, + { + "Name": "integrity", + "Value": "sha256-FvqnKFcYFAqB4tch591MqALq4MaPr2adOmZhmjh1ARQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.qkct1krwuu.js.gz", + "AssetFile": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkct1krwuu" + }, + { + "Name": "integrity", + "Value": "sha256-NHIWuXQ4m2fij2I7ABXus6hBOWJYWMuV6F1lNG8VsiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.ab98ewc3mi.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab98ewc3mi" + }, + { + "Name": "integrity", + "Value": "sha256-2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.ab98ewc3mi.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2334" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab98ewc3mi" + }, + { + "Name": "integrity", + "Value": "sha256-2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.ab98ewc3mi.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab98ewc3mi" + }, + { + "Name": "integrity", + "Value": "sha256-0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2334" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2lARdfZwnpzeUhANb4KgW6dijVHf9aDgUOkTUR8s62Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0kF0LEM+yR0FC5488b6FhLnoa5EMAqKJive+x5yoP0o=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.4ou9rg0pg2.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ou9rg0pg2" + }, + { + "Name": "integrity", + "Value": "sha256-fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.4ou9rg0pg2.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2146" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ou9rg0pg2" + }, + { + "Name": "integrity", + "Value": "sha256-fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.4ou9rg0pg2.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ou9rg0pg2" + }, + { + "Name": "integrity", + "Value": "sha256-B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2146" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIFu+P+0UMqgO6F9B2kxXZnL0+nTU1feoD1oawih/Gc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B/Jg5YwMUVo5IfEeg8Zx4RNvp1NR289pfrjvqIjZHLw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.jjq5g9t0r4.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000080237503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jjq5g9t0r4" + }, + { + "Name": "integrity", + "Value": "sha256-n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.jjq5g9t0r4.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "49593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jjq5g9t0r4" + }, + { + "Name": "integrity", + "Value": "sha256-n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.jjq5g9t0r4.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jjq5g9t0r4" + }, + { + "Name": "integrity", + "Value": "sha256-qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000080237503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "49593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n7kNBKxA/ZlLwCUTfAAa6op5i8rv74vwtMdmyXfqgug=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qUKJWtAgM3ou6f9QBikQJDNJHzV9WxDhbvf4FvbGLy8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000187758167" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "17762" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.xqhvum8xa6.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000187758167" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xqhvum8xa6" + }, + { + "Name": "integrity", + "Value": "sha256-mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.xqhvum8xa6.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "17762" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xqhvum8xa6" + }, + { + "Name": "integrity", + "Value": "sha256-mSES4H5OwckzT3E1zGbgJlmA3YRFCWMivny7NK2kzQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.xqhvum8xa6.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xqhvum8xa6" + }, + { + "Name": "integrity", + "Value": "sha256-69xGvJ9xBDs4oRPFtx09VQh9loVfd4+h+mm1QA+ftGk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.f5p23ltqyr.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002347417840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5p23ltqyr" + }, + { + "Name": "integrity", + "Value": "sha256-LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.f5p23ltqyr.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5p23ltqyr" + }, + { + "Name": "integrity", + "Value": "sha256-LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.f5p23ltqyr.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5p23ltqyr" + }, + { + "Name": "integrity", + "Value": "sha256-M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002347417840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LW28PhP/bzCg+9Ex29c82e++ZH1FEWQesu1oEXuSBZ8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M/HojPhdLnoabUs1IDDyIx+x4HHNAST1v7V0UEuqisI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.kyfdkk34if.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kyfdkk34if" + }, + { + "Name": "integrity", + "Value": "sha256-9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.kyfdkk34if.js", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "563" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kyfdkk34if" + }, + { + "Name": "integrity", + "Value": "sha256-9NkMoeAdBtej8wrO12/1lMkq0BRhlLhUO3x9Hy4uE98=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.kyfdkk34if.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kyfdkk34if" + }, + { + "Name": "integrity", + "Value": "sha256-KsW9IeDGxb6PJfsR4Zf7wC6BR3FqRK76mNx6byH24w8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005319148936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.lh5jr1es9u.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lh5jr1es9u" + }, + { + "Name": "integrity", + "Value": "sha256-d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.lh5jr1es9u.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lh5jr1es9u" + }, + { + "Name": "integrity", + "Value": "sha256-d95Q7eOwl16rykG5e/epugDTRVsQ7dyoQGm04TiZu2I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.lh5jr1es9u.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lh5jr1es9u" + }, + { + "Name": "integrity", + "Value": "sha256-2j6t+8jtGlMXHrju/H3W2gMxiaK0FZtcBktCOIFcnuA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.zyfv9in9xn.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005319148936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyfv9in9xn" + }, + { + "Name": "integrity", + "Value": "sha256-ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.zyfv9in9xn.css", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyfv9in9xn" + }, + { + "Name": "integrity", + "Value": "sha256-ZbzbI8VBSMOy6Q40sp3hcyPW1trlY1zolNQvygVb16c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.zyfv9in9xn.css.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyfv9in9xn" + }, + { + "Name": "integrity", + "Value": "sha256-3utpxRcULl4LxXdATt6Bsxp7ZpKkm4S9EYk6X3YYwMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.f5qfkantkw.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189969605" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5263" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5qfkantkw" + }, + { + "Name": "integrity", + "Value": "sha256-3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.f5qfkantkw.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5qfkantkw" + }, + { + "Name": "integrity", + "Value": "sha256-3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.f5qfkantkw.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5263" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5qfkantkw" + }, + { + "Name": "integrity", + "Value": "sha256-QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189969605" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5263" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "18569" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3SG+XYvYGQbU2xl8lon8aWqkAqtHkIJfWg5VQxa83Ak=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5263" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QTgqAjjyp7k/NBoAES4Nz0ClIEfyKGyPrwLAPyxnxBQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000389256520" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2568" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2568" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.y47kcwcyjs.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000389256520" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2568" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y47kcwcyjs" + }, + { + "Name": "integrity", + "Value": "sha256-3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.y47kcwcyjs.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7341" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y47kcwcyjs" + }, + { + "Name": "integrity", + "Value": "sha256-3lINILjkzvrf1IzL7FtBqcQRRgXk3d0SyUV0s/E8MKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.y47kcwcyjs.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2568" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y47kcwcyjs" + }, + { + "Name": "integrity", + "Value": "sha256-27YVBcaprodtU7UHIeafYh6H0KFCZjgPCRwc8gqOysA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002336448598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.ebsaoobkdb.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebsaoobkdb" + }, + { + "Name": "integrity", + "Value": "sha256-JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.ebsaoobkdb.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebsaoobkdb" + }, + { + "Name": "integrity", + "Value": "sha256-JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.ebsaoobkdb.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebsaoobkdb" + }, + { + "Name": "integrity", + "Value": "sha256-U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JipW6CMDpobKQxG3ZOViiDEMgpYGFx9ct7ZkMy9LqNw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U2p/G0XruFYKd/km65xSbezhjOXbe5ss4iuBfH7vH+M=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.po5900xf8t.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002336448598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5900xf8t" + }, + { + "Name": "integrity", + "Value": "sha256-96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.po5900xf8t.js", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5900xf8t" + }, + { + "Name": "integrity", + "Value": "sha256-96omDL4gbXn7Vausvv2CYnex6l1MH6H8isPR69BNu6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.po5900xf8t.js.gz", + "AssetFile": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "po5900xf8t" + }, + { + "Name": "integrity", + "Value": "sha256-pB/7YEpBxdV2bov4xa6vO1kNgPvRrW3D3HSuB0CyP04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.67td4vaz2z.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007194244604" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67td4vaz2z" + }, + { + "Name": "integrity", + "Value": "sha256-7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.67td4vaz2z.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67td4vaz2z" + }, + { + "Name": "integrity", + "Value": "sha256-7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.67td4vaz2z.css.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67td4vaz2z" + }, + { + "Name": "integrity", + "Value": "sha256-QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.007194244604" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7mqefoWNOHyei4v7fbe7u2rJIQ+3xFdx1TwHshnBY9U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "138" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QVANNFCDrTP34UkunqpBJz5IlHkkoo2Ru0pieV8acbs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.8jao8yiky1.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008064516129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "123" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jao8yiky1" + }, + { + "Name": "integrity", + "Value": "sha256-VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.8jao8yiky1.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jao8yiky1" + }, + { + "Name": "integrity", + "Value": "sha256-VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.8jao8yiky1.css.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "123" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8jao8yiky1" + }, + { + "Name": "integrity", + "Value": "sha256-e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008064516129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "123" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VDs653TwZGIPKg53mr0BtUcS/EyqVIEcZ/vaQommAJA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "123" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e+yxVLMVqFEOyjZJBKFDV+P8V1eJJ/3DJl09gtKdLFE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000106860440" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "32239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243546030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.nlwv18y2rx.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243546030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlwv18y2rx" + }, + { + "Name": "integrity", + "Value": "sha256-yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.nlwv18y2rx.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlwv18y2rx" + }, + { + "Name": "integrity", + "Value": "sha256-yxexTWxGIIk8c0by5ba++LFiu1bvjnP7kE2TuXI3rhU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.nlwv18y2rx.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nlwv18y2rx" + }, + { + "Name": "integrity", + "Value": "sha256-dniOqeroD+51AvyL6M6jTqsL0+oQv/V+wzoCLhbaOnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.zyokn2ge5t.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000106860440" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyokn2ge5t" + }, + { + "Name": "integrity", + "Value": "sha256-lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.zyokn2ge5t.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyokn2ge5t" + }, + { + "Name": "integrity", + "Value": "sha256-lQV9kwBVCmX9Kv2pNjGG72XI/jr1azqB9Uvon1JfKAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.zyokn2ge5t.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zyokn2ge5t" + }, + { + "Name": "integrity", + "Value": "sha256-0cSBe4AOl2o5nnQj2xsdQ6NQ4PYrP9kH8btIUP7kwGg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.a5oo774fir.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a5oo774fir" + }, + { + "Name": "integrity", + "Value": "sha256-wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.a5oo774fir.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a5oo774fir" + }, + { + "Name": "integrity", + "Value": "sha256-wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.a5oo774fir.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a5oo774fir" + }, + { + "Name": "integrity", + "Value": "sha256-Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wozgn784+7SQ6vvG9e5WvjBIDfNyyIt4Y9Ll+xjJIxs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xsw/zDJv9corvYp4YpW6KHjNZwRjlKhJEWrG/zQ6Smo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.slst6dm7ok.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "slst6dm7ok" + }, + { + "Name": "integrity", + "Value": "sha256-EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.slst6dm7ok.js", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "slst6dm7ok" + }, + { + "Name": "integrity", + "Value": "sha256-EHDAw9tgaitp4OURXis1G/aNAdnjBzZLJiiCSNP5O0U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.slst6dm7ok.js.gz", + "AssetFile": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "slst6dm7ok" + }, + { + "Name": "integrity", + "Value": "sha256-vaTFObd/mpI5lQbMI4yOcFHj6a7qo/X0FdEISu6P1BQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000946969697" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.gz6q36qjp2.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000946969697" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz6q36qjp2" + }, + { + "Name": "integrity", + "Value": "sha256-JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.gz6q36qjp2.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz6q36qjp2" + }, + { + "Name": "integrity", + "Value": "sha256-JD+5/Z9gUTn5xNlxEDMhFhcGZ3IUMIN1z4uDbya8KWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.gz6q36qjp2.css.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz6q36qjp2" + }, + { + "Name": "integrity", + "Value": "sha256-HRKOW2dzv/VkYeakE2BKED0rlKXmjJJIt3kQmrcjjxw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.1jtqv39mpy.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jtqv39mpy" + }, + { + "Name": "integrity", + "Value": "sha256-A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.1jtqv39mpy.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jtqv39mpy" + }, + { + "Name": "integrity", + "Value": "sha256-A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.1jtqv39mpy.css.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jtqv39mpy" + }, + { + "Name": "integrity", + "Value": "sha256-oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A23Q5MWh/nDSabsw/t8HPfwUlP0hvTNlMz+Sf2rKGdA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oarlYSnRmZDY+Xrd5rXYBJUpl5CMwDh9XKq8Lb0Eg2U=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.b2jaa3m727.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000080638658" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2jaa3m727" + }, + { + "Name": "integrity", + "Value": "sha256-/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.b2jaa3m727.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "42073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2jaa3m727" + }, + { + "Name": "integrity", + "Value": "sha256-/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.b2jaa3m727.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2jaa3m727" + }, + { + "Name": "integrity", + "Value": "sha256-UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000080638658" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "42073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Sq70kQyx9vQadcZL7lwXg7Obkeqtv/WHurcwZGHYl0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UJ7J0QlccCMqRpZFHW6PHmoGpID0PPTaHyZQOT2cCCA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000205718988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.m7eswhismn.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000205718988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7eswhismn" + }, + { + "Name": "integrity", + "Value": "sha256-DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.m7eswhismn.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7eswhismn" + }, + { + "Name": "integrity", + "Value": "sha256-DqUCKW9aJEq7iDfR+ud/0uuCkXjvxzfjftBfL0H/y80=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.m7eswhismn.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7eswhismn" + }, + { + "Name": "integrity", + "Value": "sha256-NR/vsx7laCGFw9oRXIPwD+pW82tnZAj1stDs2bbfBWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.11tn5o4ii3.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001197604790" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11tn5o4ii3" + }, + { + "Name": "integrity", + "Value": "sha256-tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.11tn5o4ii3.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11tn5o4ii3" + }, + { + "Name": "integrity", + "Value": "sha256-tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.11tn5o4ii3.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11tn5o4ii3" + }, + { + "Name": "integrity", + "Value": "sha256-l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001197604790" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTeLQgkQLH9CxPWeWxAyPWW2ZCV0a22GkEEvWzPEhBs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l/338cHku24YoX81VPob/yKcK0MfUQ94WoSks9U0lnU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.h5fhho3ktf.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001615508885" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5fhho3ktf" + }, + { + "Name": "integrity", + "Value": "sha256-C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.h5fhho3ktf.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5fhho3ktf" + }, + { + "Name": "integrity", + "Value": "sha256-C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.h5fhho3ktf.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5fhho3ktf" + }, + { + "Name": "integrity", + "Value": "sha256-MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001615508885" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1gNb96b5B3Yap/znG5LYDcQ0rOCN4EdO5wyExzekP8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MLTjy5b9btgFuQfkdPemBMFf0G78yRwTyCBn3GTZTMo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.5bsaootd3o.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005434782609" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "183" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bsaootd3o" + }, + { + "Name": "integrity", + "Value": "sha256-0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.5bsaootd3o.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bsaootd3o" + }, + { + "Name": "integrity", + "Value": "sha256-0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.5bsaootd3o.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "183" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bsaootd3o" + }, + { + "Name": "integrity", + "Value": "sha256-GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005434782609" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "183" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0TWf4M6LMjpZn7p2phn48ialQ2cvCAE4OAxdGTMlsfE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "183" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GnRQQBopkGD9YD6HxhSUfwYkTRowZBLjjYe1nPdLhxg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.2v0px8uppa.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005882352941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2v0px8uppa" + }, + { + "Name": "integrity", + "Value": "sha256-Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.2v0px8uppa.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "385" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2v0px8uppa" + }, + { + "Name": "integrity", + "Value": "sha256-Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.2v0px8uppa.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2v0px8uppa" + }, + { + "Name": "integrity", + "Value": "sha256-1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005882352941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "385" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yi7yg/54aaKM3L5/pIY06sOAygR3bftK1eKUdg0GpI4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1UIXIM9R15kUTmiV5PBkjoQHCvIK83JeroepJmSCMUU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.bfp4wiv8dd.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000282645562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfp4wiv8dd" + }, + { + "Name": "integrity", + "Value": "sha256-t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.bfp4wiv8dd.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfp4wiv8dd" + }, + { + "Name": "integrity", + "Value": "sha256-t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.bfp4wiv8dd.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bfp4wiv8dd" + }, + { + "Name": "integrity", + "Value": "sha256-mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000282645562" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t/FMszu/wRxMPzSyxW2YD9VmkRBtCZTEtv5RLBZ8yQM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mX8BuV1AiZZOeHI1BgNnWWyD9QrQrgR8y2yKD/OyjIo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618046972" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.z5fxa0wwfv.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000618046972" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z5fxa0wwfv" + }, + { + "Name": "integrity", + "Value": "sha256-BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.z5fxa0wwfv.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z5fxa0wwfv" + }, + { + "Name": "integrity", + "Value": "sha256-BxW9qKPLr2QyXqWAGVd66XTTSogn7aMUDn/k8QpcwTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.z5fxa0wwfv.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z5fxa0wwfv" + }, + { + "Name": "integrity", + "Value": "sha256-b3dJ5fQDl5WtnisATQzfeItBRAT/EpodHX+IoKZdSYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.22esa9c2bt.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22esa9c2bt" + }, + { + "Name": "integrity", + "Value": "sha256-KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.22esa9c2bt.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22esa9c2bt" + }, + { + "Name": "integrity", + "Value": "sha256-KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.22esa9c2bt.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22esa9c2bt" + }, + { + "Name": "integrity", + "Value": "sha256-U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KoQEaCnAqFggUIxUlBVNudXdjf9w1oaDHBb+a8LwMEo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U1KOfvporqooHEaeItnpIiNqUxms28zZByE8pDe6H9E=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.rtgj7ulp5k.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtgj7ulp5k" + }, + { + "Name": "integrity", + "Value": "sha256-EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.rtgj7ulp5k.js", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtgj7ulp5k" + }, + { + "Name": "integrity", + "Value": "sha256-EfVJ3hfAlNLaBKqkzbj1kbiWPwIfLGkwrPu6vPWeHlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.rtgj7ulp5k.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtgj7ulp5k" + }, + { + "Name": "integrity", + "Value": "sha256-mRhrrxCXVBM8Gh13vzWZwFcLic+xAwB7OyQZHM6RPps=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004524886878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.hr2solglra.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004524886878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr2solglra" + }, + { + "Name": "integrity", + "Value": "sha256-/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.hr2solglra.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr2solglra" + }, + { + "Name": "integrity", + "Value": "sha256-/cgJp7YnCwZiLWPCDKoQNxXe6aoKwhsVbjD8MF+Ulkw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.hr2solglra.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr2solglra" + }, + { + "Name": "integrity", + "Value": "sha256-r6Bmruw989Z7tYi2klnnRPcOnqhAuiGH9/b4BLzQcE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.xcg2r80dyv.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xcg2r80dyv" + }, + { + "Name": "integrity", + "Value": "sha256-URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.xcg2r80dyv.css", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xcg2r80dyv" + }, + { + "Name": "integrity", + "Value": "sha256-URoyAS2xM3A/DHLU9P+GI9ooqJaG8p52juXiS3nCLKY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.xcg2r80dyv.css.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xcg2r80dyv" + }, + { + "Name": "integrity", + "Value": "sha256-TaiAJpRiTbwtlj2UgjL7skdJUEDkjTq++60mGh37Wbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.1vob95lca5.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000145158949" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vob95lca5" + }, + { + "Name": "integrity", + "Value": "sha256-nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.1vob95lca5.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22129" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vob95lca5" + }, + { + "Name": "integrity", + "Value": "sha256-nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.1vob95lca5.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vob95lca5" + }, + { + "Name": "integrity", + "Value": "sha256-vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000145158949" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22129" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nX8puL8Eanp6g6IegyQ+FtSAIf3nacRNKNUHiJvNrFc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vxYfOUB1FUIDuOleO9+B2lbCY8yCukLwIw/CzDzMacs=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000364298725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.zwr281qcei.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000364298725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwr281qcei" + }, + { + "Name": "integrity", + "Value": "sha256-00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.zwr281qcei.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwr281qcei" + }, + { + "Name": "integrity", + "Value": "sha256-00VyFwwIwVQae7T/DQgiIqJ1U3OYSnLQDZYP5RCGSFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.zwr281qcei.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwr281qcei" + }, + { + "Name": "integrity", + "Value": "sha256-tBPdP/wXR33KWjEpEo3sxzwEA0m0RYKWz1OYLAH1m9w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002364066194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "886" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.74nkr8wpcz.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003076923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74nkr8wpcz" + }, + { + "Name": "integrity", + "Value": "sha256-Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.74nkr8wpcz.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74nkr8wpcz" + }, + { + "Name": "integrity", + "Value": "sha256-Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.74nkr8wpcz.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74nkr8wpcz" + }, + { + "Name": "integrity", + "Value": "sha256-MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003076923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bw1Gk6zDILhso5+/A9UBK6SgYO5ZQXl3o5ybEAf5OOc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MMch+iBzDBB2cVRrY8QgG015bn+gljbZh2cwKXd5IDM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.usa3nsx0dj.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002364066194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "usa3nsx0dj" + }, + { + "Name": "integrity", + "Value": "sha256-ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.usa3nsx0dj.js", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "886" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "usa3nsx0dj" + }, + { + "Name": "integrity", + "Value": "sha256-ki/c3S+D0+XhKdCNW4qfsTvVrra/5WPnrowOC3B6QVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.usa3nsx0dj.js.gz", + "AssetFile": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "usa3nsx0dj" + }, + { + "Name": "integrity", + "Value": "sha256-6Ph3ohaIJQi95mEmo4aKy2HhMljW1IFuum6TV8xoNWY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.414pwliy3r.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "414pwliy3r" + }, + { + "Name": "integrity", + "Value": "sha256-WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.414pwliy3r.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "780" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "414pwliy3r" + }, + { + "Name": "integrity", + "Value": "sha256-WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.414pwliy3r.css.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "414pwliy3r" + }, + { + "Name": "integrity", + "Value": "sha256-YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "780" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WOtHneSqbg3O0a/ExnRAOtHa8LW87lRncgXXLRSbxv0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YmSW8cfFv+1zjanH4trwxIafsUs8UKfs97RpSkj4dzM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003095975232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.udmrmncdxw.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003095975232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udmrmncdxw" + }, + { + "Name": "integrity", + "Value": "sha256-7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.udmrmncdxw.css", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udmrmncdxw" + }, + { + "Name": "integrity", + "Value": "sha256-7sOE+yMJ6+Ok8Scn+EShEwxFZb2dc+qpAnFTLTH0q5g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.udmrmncdxw.css.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udmrmncdxw" + }, + { + "Name": "integrity", + "Value": "sha256-Td6uhXSZVsBF9Ctj/hd4jxenVO9Hb2ue7ujV7WvaOUY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.hxvzhxsnqp.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085236959" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxvzhxsnqp" + }, + { + "Name": "integrity", + "Value": "sha256-mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.hxvzhxsnqp.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "39946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxvzhxsnqp" + }, + { + "Name": "integrity", + "Value": "sha256-mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.hxvzhxsnqp.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxvzhxsnqp" + }, + { + "Name": "integrity", + "Value": "sha256-asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085236959" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "39946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mx4Yj/BCsf/K3MMWtNU2QsH6HK+I7Rwd07nQayEkGtg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-asKPfc6p88Izp+B2cJhOldlwU+mB/dWQxTsLMtT1usc=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.3tyfs986w8.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000244498778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tyfs986w8" + }, + { + "Name": "integrity", + "Value": "sha256-CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.3tyfs986w8.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tyfs986w8" + }, + { + "Name": "integrity", + "Value": "sha256-CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.3tyfs986w8.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tyfs986w8" + }, + { + "Name": "integrity", + "Value": "sha256-zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000244498778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CUK50sM482XTeggMA40xpsZ0btQen6pRdbyEVhRk1Lw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zQMssN1O6RVtw62ulfsFyuA1iXJPFxfeICacjsGn2Sk=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.h5e1e6npw4.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5e1e6npw4" + }, + { + "Name": "integrity", + "Value": "sha256-5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.h5e1e6npw4.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5e1e6npw4" + }, + { + "Name": "integrity", + "Value": "sha256-5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.h5e1e6npw4.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5e1e6npw4" + }, + { + "Name": "integrity", + "Value": "sha256-SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5VPW/U47mmgWEpH5Yb2O6qyxPfMYyiRz5iO7h/KAZxw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SF+2QPPCzOGczSnA/qozIi1Wb40W2TwieP1AhsSsKRg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.l9nne2i5ti.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9nne2i5ti" + }, + { + "Name": "integrity", + "Value": "sha256-d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.l9nne2i5ti.js", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9nne2i5ti" + }, + { + "Name": "integrity", + "Value": "sha256-d7RXglZI5yGDNapN3kblT3nN6zkosLkBq0WGtro2hX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.l9nne2i5ti.js.gz", + "AssetFile": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9nne2i5ti" + }, + { + "Name": "integrity", + "Value": "sha256-dB4o+Q0KsHiBH2CpBlcABuCLr4GzLvjk10uNee3Xitg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.m0nbgzbbsg.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449640288" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0nbgzbbsg" + }, + { + "Name": "integrity", + "Value": "sha256-uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.m0nbgzbbsg.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0nbgzbbsg" + }, + { + "Name": "integrity", + "Value": "sha256-uspqhUXaC7mlaXrG6ir+a6QfxccYgQW98y0IbJgsD+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.m0nbgzbbsg.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2223" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0nbgzbbsg" + }, + { + "Name": "integrity", + "Value": "sha256-39Rxw00HHKr6NkcfNX5Q/adOlvXdQSF9MRMz1kyUwAg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464900046" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8683" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.kdwtf91nzi.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464900046" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdwtf91nzi" + }, + { + "Name": "integrity", + "Value": "sha256-2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.kdwtf91nzi.css", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8683" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdwtf91nzi" + }, + { + "Name": "integrity", + "Value": "sha256-2LMYz+gOltaDMSgIR+Zntp4RkZByV6SNcTcBLV1/DZQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.kdwtf91nzi.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2150" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdwtf91nzi" + }, + { + "Name": "integrity", + "Value": "sha256-54zNwXiuAyLVGuZXQQhsb5Tgq68Jxev7zrTDyU1WldY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.h8cq4wsu4w.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034754805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h8cq4wsu4w" + }, + { + "Name": "integrity", + "Value": "sha256-cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.h8cq4wsu4w.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "165168" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h8cq4wsu4w" + }, + { + "Name": "integrity", + "Value": "sha256-cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.h8cq4wsu4w.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h8cq4wsu4w" + }, + { + "Name": "integrity", + "Value": "sha256-S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034754805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "165168" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQSzquTW8aRaqFZ1NKMaU+nSON/ivpo3VGUnt9tOkuo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S+YiZBAXukl7FoRuGmyLn8jJAUNSS9gY5n4UY6QaMgg=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.bce3mhc7fp.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067911715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bce3mhc7fp" + }, + { + "Name": "integrity", + "Value": "sha256-W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.bce3mhc7fp.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "67869" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bce3mhc7fp" + }, + { + "Name": "integrity", + "Value": "sha256-W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.bce3mhc7fp.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bce3mhc7fp" + }, + { + "Name": "integrity", + "Value": "sha256-sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067911715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "67869" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W6VG60cZwi9bi39+nRgGZMObsjMBFmKr5AVAS0xEngA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sD/g0MltxO48CejaUGEGfmh2DNMCFh6dpJX5I4emLNU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.4gnx12vpn8.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001792114695" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gnx12vpn8" + }, + { + "Name": "integrity", + "Value": "sha256-DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.4gnx12vpn8.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gnx12vpn8" + }, + { + "Name": "integrity", + "Value": "sha256-DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.4gnx12vpn8.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gnx12vpn8" + }, + { + "Name": "integrity", + "Value": "sha256-xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001792114695" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPJKmzSSDS/YBGrFgPZpV/sPkTK5jXvF/mFpr32uEH4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xdJHjFiaXxoCc8PdS0fOasgyatFMp/rbBlPBQqri6lk=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.33biq5ngwn.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "33biq5ngwn" + }, + { + "Name": "integrity", + "Value": "sha256-nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.33biq5ngwn.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "33biq5ngwn" + }, + { + "Name": "integrity", + "Value": "sha256-nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.33biq5ngwn.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "33biq5ngwn" + }, + { + "Name": "integrity", + "Value": "sha256-LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nwbXsHarXvZamX08duYYT3Xzqd3bKxxsi0BdfaYaj4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQFdyb16W6Jc8RfGt2B92oP3F7PPUJupDsR9mhtiODM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.b6t4otomp0.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000283125708" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3531" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6t4otomp0" + }, + { + "Name": "integrity", + "Value": "sha256-sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.b6t4otomp0.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6t4otomp0" + }, + { + "Name": "integrity", + "Value": "sha256-sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.b6t4otomp0.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3531" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6t4otomp0" + }, + { + "Name": "integrity", + "Value": "sha256-Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000283125708" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3531" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxgLzshBBEgMyUgTd0i1q/iEuIxmQHTUd1zDsz615q8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3531" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ui7HRHkBl2IVxgdAVVkXYA6k+byWIjUz3WvuNK3Ha7Y=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000290107340" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9992" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.sc5dmogg5e.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000290107340" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc5dmogg5e" + }, + { + "Name": "integrity", + "Value": "sha256-pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.sc5dmogg5e.css", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9992" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc5dmogg5e" + }, + { + "Name": "integrity", + "Value": "sha256-pG3R/6fZcWyngTPjEB71BPcoUa0YSpg2MA3BdnVfeEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.sc5dmogg5e.css.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sc5dmogg5e" + }, + { + "Name": "integrity", + "Value": "sha256-eHF22ZxOWbelp0ZJ++R/7HzEtq3zaTdYUwG0Ww9/qVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.95md83km1c.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040848005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "95md83km1c" + }, + { + "Name": "integrity", + "Value": "sha256-o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.95md83km1c.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "135359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "95md83km1c" + }, + { + "Name": "integrity", + "Value": "sha256-o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.95md83km1c.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "95md83km1c" + }, + { + "Name": "integrity", + "Value": "sha256-RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040848005" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "135359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o5phbfKnwVSIzAEI4L8qAnO0N1KQwjl9fAf0x+ozotA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RUJP2sYGm5fsU5y8gguMwFW7IanABnMvjDLqxxr9yMw=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.bq34nb82fj.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091299187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10952" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bq34nb82fj" + }, + { + "Name": "integrity", + "Value": "sha256-HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.bq34nb82fj.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "44764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bq34nb82fj" + }, + { + "Name": "integrity", + "Value": "sha256-HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.bq34nb82fj.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10952" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bq34nb82fj" + }, + { + "Name": "integrity", + "Value": "sha256-qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091299187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10952" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "44764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HZG6C1KgEk6jLsNbK56cAnP/qnMBGNHKjTjal/I2MaE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10952" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qbhYwEX/PfZmr8mQnEJkRy+yrn3QP9g141ZZD8JWCDI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001432664756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.k4ewkq7q86.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001432664756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k4ewkq7q86" + }, + { + "Name": "integrity", + "Value": "sha256-hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.k4ewkq7q86.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k4ewkq7q86" + }, + { + "Name": "integrity", + "Value": "sha256-hDtIoFctnMIeXR9fgkjbOZ6EZePqITMiKJzYACZDcxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.k4ewkq7q86.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k4ewkq7q86" + }, + { + "Name": "integrity", + "Value": "sha256-dTg+DxmQs5+uFZlKnRMhOzCTrjWMq3J96OGw7llYgjE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.avbv5p471y.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avbv5p471y" + }, + { + "Name": "integrity", + "Value": "sha256-1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.avbv5p471y.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avbv5p471y" + }, + { + "Name": "integrity", + "Value": "sha256-1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.avbv5p471y.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avbv5p471y" + }, + { + "Name": "integrity", + "Value": "sha256-CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1naZwgMDbKh1pCOeJHi1MEJ5urVAhnfib+xEKpwU5ZE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CvFb5zTXSHhEupm7qCzBIRn+VT0HlY9lSGbKspy2j6s=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001201923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5070" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.e91nkrsv6h.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001201923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e91nkrsv6h" + }, + { + "Name": "integrity", + "Value": "sha256-IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.e91nkrsv6h.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5070" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e91nkrsv6h" + }, + { + "Name": "integrity", + "Value": "sha256-IsY5LY7sIaIfP7xnDAfJKjfc9gfJlkV3FqPxLJmrGaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.e91nkrsv6h.css.gz", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e91nkrsv6h" + }, + { + "Name": "integrity", + "Value": "sha256-F9souszJgITJlQTzSxhKaFXndnv1l27ZyLQ0nL3rzac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.75dlgiel77.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001300390117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75dlgiel77" + }, + { + "Name": "integrity", + "Value": "sha256-NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.75dlgiel77.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4435" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75dlgiel77" + }, + { + "Name": "integrity", + "Value": "sha256-NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.75dlgiel77.css.gz", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75dlgiel77" + }, + { + "Name": "integrity", + "Value": "sha256-xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001300390117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4435" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NRIGHcZNB1C3sYk5YhcPGJT5H5cpqcNzVA+RCYvl0ZU=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/datatables-select/css/select.bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xTJwpJ/UrLjv+dUWx15R8xMRWl4vNIrRbnJVDzZTTCY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.6x203co8o0.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000111706881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x203co8o0" + }, + { + "Name": "integrity", + "Value": "sha256-yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.6x203co8o0.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x203co8o0" + }, + { + "Name": "integrity", + "Value": "sha256-yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.6x203co8o0.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6x203co8o0" + }, + { + "Name": "integrity", + "Value": "sha256-9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000111706881" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yiFA5jwr1HcqxaVVpAFCIa75Oua7y0GqFepj4qWN5JA=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9wMRsKrZeI/JLVIVHoDv+MXgIkRSYn1EckqR/haWzeI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.9dm5y8xw7d.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000268744961" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dm5y8xw7d" + }, + { + "Name": "integrity", + "Value": "sha256-g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.9dm5y8xw7d.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dm5y8xw7d" + }, + { + "Name": "integrity", + "Value": "sha256-g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.9dm5y8xw7d.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dm5y8xw7d" + }, + { + "Name": "integrity", + "Value": "sha256-l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000268744961" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.js", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g21r+RDiK9W5bPCP77XzakXBJqlbHNAF32wE5m04ZE8=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/dataTables.select.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l92cNpFJSClP+VlvLj9IctYSAMDLzFrnhkNevxE4DUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.gtktzbklc9.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtktzbklc9" + }, + { + "Name": "integrity", + "Value": "sha256-pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.gtktzbklc9.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtktzbklc9" + }, + { + "Name": "integrity", + "Value": "sha256-pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.gtktzbklc9.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtktzbklc9" + }, + { + "Name": "integrity", + "Value": "sha256-Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pJ2TcFLM8QBwxy4G2C6KnlH5akrZ+4HS8vnb2sGqn/4=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cyz4G4Sl0W57fHuDJZIszBDX3TMklG4u6wBdKpfzw0A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.gplwu92cj5.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gplwu92cj5" + }, + { + "Name": "integrity", + "Value": "sha256-HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.gplwu92cj5.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gplwu92cj5" + }, + { + "Name": "integrity", + "Value": "sha256-HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.gplwu92cj5.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gplwu92cj5" + }, + { + "Name": "integrity", + "Value": "sha256-k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HAgIX2fi7xyl8lzoYfbscwZgbm4hoMYxNrM1Y37UWCI=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz", + "AssetFile": "adminlte/plugins/datatables-select/js/select.bootstrap4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k8BRvhA7ZzaBKXiInK8i13y2myRBrx6acc9Onx/rQNY=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.6mhq46pata.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008707616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6mhq46pata" + }, + { + "Name": "integrity", + "Value": "sha256-Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.6mhq46pata.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "465770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6mhq46pata" + }, + { + "Name": "integrity", + "Value": "sha256-Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.6mhq46pata.js.gz", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6mhq46pata" + }, + { + "Name": "integrity", + "Value": "sha256-gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008707616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "465770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Urj66nVE+w6vdnM4seGsHUhIZ4WYlX7VWDbrcBchv2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.js.gz", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "114841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gSszLM1f5gHuSf53dH6TdFfzwG9ZUWRkz/38aWev43A=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034918640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "83770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.y042zq92cw.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034918640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y042zq92cw" + }, + { + "Name": "integrity", + "Value": "sha256-4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.y042zq92cw.js", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "83770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y042zq92cw" + }, + { + "Name": "integrity", + "Value": "sha256-4jvXw0MqLch9kK5jEgSuhFFVdSylHTeP7HVUoJRoldM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/datatables/jquery.dataTables.min.y042zq92cw.js.gz", + "AssetFile": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y042zq92cw" + }, + { + "Name": "integrity", + "Value": "sha256-rMC6+YQUeWxPZTK6wdEucwz2AckmPOjeAsmBOQg4dXE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/datatables/jquery.dataTables.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.49fhvdu0uw.js", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085822176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49fhvdu0uw" + }, + { + "Name": "integrity", + "Value": "sha256-iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.js" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.49fhvdu0uw.js", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "67842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49fhvdu0uw" + }, + { + "Name": "integrity", + "Value": "sha256-iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.js" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.49fhvdu0uw.js.gz", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49fhvdu0uw" + }, + { + "Name": "integrity", + "Value": "sha256-XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.85vbs1dise.css", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000616522811" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85vbs1dise" + }, + { + "Name": "integrity", + "Value": "sha256-lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.css" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.85vbs1dise.css", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8069" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85vbs1dise" + }, + { + "Name": "integrity", + "Value": "sha256-lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.css" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.85vbs1dise.css.gz", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85vbs1dise" + }, + { + "Name": "integrity", + "Value": "sha256-KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/daterangepicker/daterangepicker.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.css", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000616522811" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.css", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8069" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lP22bsj+dImBpPIJD99KKgo9vlrOLmXEzkbpXWkr2sc=" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.css.gz", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1621" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KBrmhxvXAU+/M3JdriN7hBSo+q1DCOLHpJBke8+AyEI=" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.js", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085822176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.js", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "67842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iOVs1FytPbiP3HcnhtFMzo0MwYebwD5OVr6Rnf2a0ik=" + } + ] + }, + { + "Route": "adminlte/plugins/daterangepicker/daterangepicker.js.gz", + "AssetFile": "adminlte/plugins/daterangepicker/daterangepicker.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XQE6NV8ptaITUqYBQ8D19SIezqQHFQ/9UALqc/92wmk=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.3zmhaj3z67.css", + "AssetFile": "adminlte/plugins/dropzone/basic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003076923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zmhaj3z67" + }, + { + "Name": "integrity", + "Value": "sha256-cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/basic.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.3zmhaj3z67.css", + "AssetFile": "adminlte/plugins/dropzone/basic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zmhaj3z67" + }, + { + "Name": "integrity", + "Value": "sha256-cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/basic.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.3zmhaj3z67.css.gz", + "AssetFile": "adminlte/plugins/dropzone/basic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zmhaj3z67" + }, + { + "Name": "integrity", + "Value": "sha256-QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/basic.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.css", + "AssetFile": "adminlte/plugins/dropzone/basic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003076923077" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.css", + "AssetFile": "adminlte/plugins/dropzone/basic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQtHxMV9ZpzvuyAzn1IOo7bySsRsuyCx0DlexshmwQY=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/basic.css.gz", + "AssetFile": "adminlte/plugins/dropzone/basic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "324" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QFIBzNuqchbEhf2t9SyNNjYXVOIhOSsc0pqmZgYAjEc=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.2jgxin5kcx.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013004747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone-amd-module.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.2jgxin5kcx.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "351897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone-amd-module.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.2jgxin5kcx.js.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013004747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "351897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone-amd-module.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.2jgxin5kcx.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013004747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.2jgxin5kcx.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "351897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.2jgxin5kcx.js.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2jgxin5kcx" + }, + { + "Name": "integrity", + "Value": "sha256-MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.css", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000602409639" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.css", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.css.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013004747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "351897" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7i+SKxlWL45HSOnhBsZl2V39Zs3jWYbEkfSBL0s6d7g=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "76894" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MF0TcltYes600+sW8/IMksxMeKg/peDtD6Lme3iBPdk=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.map", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019580201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51071" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.map", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "179451" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.map.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51071" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.t8svpuu6if.map", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019580201" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51071" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8svpuu6if" + }, + { + "Name": "integrity", + "Value": "sha256-vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.t8svpuu6if.map", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "179451" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8svpuu6if" + }, + { + "Name": "integrity", + "Value": "sha256-vfG9GAmY5AxBZnWd2D9LHcfmlEFwqoIkh62uVMjavaw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.js.t8svpuu6if.map.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51071" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8svpuu6if" + }, + { + "Name": "integrity", + "Value": "sha256-uL5AupG5VLvF4QFgEo1l4i/US2NgFGrmgHteOFNNg54=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.q9i2o2y2bd.css", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000602409639" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9i2o2y2bd" + }, + { + "Name": "integrity", + "Value": "sha256-AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.q9i2o2y2bd.css", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9i2o2y2bd" + }, + { + "Name": "integrity", + "Value": "sha256-AjfGwKpL7JCLLhsmOwZLRrVvwX8Yr2Ew0C2MivgLGPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/dropzone.q9i2o2y2bd.css.gz", + "AssetFile": "adminlte/plugins/dropzone/dropzone.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9i2o2y2bd" + }, + { + "Name": "integrity", + "Value": "sha256-OWgYAaSwuyuLy1rqD/3qD5B6f13NZh3ec4oxB+vRcg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/dropzone.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.7mizpc17xg.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.7mizpc17xg.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.7mizpc17xg.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/basic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.7mizpc17xg.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.7mizpc17xg.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.7mizpc17xg.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mizpc17xg" + }, + { + "Name": "integrity", + "Value": "sha256-lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/basic.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.css", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/4HNZFQ9aoR40zyMpcfty49TfzYuOgFTpWD8WiZhSHI=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/basic.min.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/basic.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lCm579HQy9aCgnwsVvDHt5ExnNfAJ48gMd8GjVe8cok=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027326137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "114795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.wd9mj3g43m.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027326137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.wd9mj3g43m.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "114795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.wd9mj3g43m.js.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone-amd-module.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027326137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "114795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.js.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.rpo6apucdd.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.rpo6apucdd.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.rpo6apucdd.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.wd9mj3g43m.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027326137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.wd9mj3g43m.js", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "114795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-/Ec0oFyP7ySv9DXmbdBaw35qbONlmGLJuAQ/o+vX1Fc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.min.wd9mj3g43m.js.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wd9mj3g43m" + }, + { + "Name": "integrity", + "Value": "sha256-w0RZzFwnJitW4Js8JogcrRC+dyHG4XssU4svBsaq1l4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.rpo6apucdd.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.rpo6apucdd.css", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.css" + } + ] + }, + { + "Route": "adminlte/plugins/dropzone/min/dropzone.rpo6apucdd.css.gz", + "AssetFile": "adminlte/plugins/dropzone/min/dropzone.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/dropzone/min/dropzone.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.149a06eoyl.css", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000375375375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "149a06eoyl" + }, + { + "Name": "integrity", + "Value": "sha256-oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.149a06eoyl.css", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7144" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "149a06eoyl" + }, + { + "Name": "integrity", + "Value": "sha256-oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.149a06eoyl.css.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "149a06eoyl" + }, + { + "Name": "integrity", + "Value": "sha256-8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.cimb9ccda1.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000152951973" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cimb9ccda1" + }, + { + "Name": "integrity", + "Value": "sha256-TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.cimb9ccda1.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cimb9ccda1" + }, + { + "Name": "integrity", + "Value": "sha256-TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.cimb9ccda1.js.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cimb9ccda1" + }, + { + "Name": "integrity", + "Value": "sha256-tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000375375375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7144" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oQQmNYE01JgWXXGBDV04ozsvBlD5KxzWmMs0MvHpIkI=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8A07YdZ3QT14dqj/TYKnUYvJDtzIhbde7WW/Meb6no4=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000152951973" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TGAFj+B64G3BK43AWeaeKj1QnbHMcSrCiYXUahETR3w=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.854ccv5m1u.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098444576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "854ccv5m1u" + }, + { + "Name": "integrity", + "Value": "sha256-BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.854ccv5m1u.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "44911" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "854ccv5m1u" + }, + { + "Name": "integrity", + "Value": "sha256-BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.854ccv5m1u.map.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "854ccv5m1u" + }, + { + "Name": "integrity", + "Value": "sha256-iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tmHQvZ1B0Kp+ztk45s52bWVhzSN281V4hVpkUWLtFNo=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098444576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "44911" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BCi8N5Tq5TLpkh95lY0+tk4QBWVw/x3uZNYpea6q3dg=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iBCUeH8vmcF03NKs4d5qCyPNxC4YWf7ZwuSOEwAtz9M=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.3wrp5udlce.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000231107003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3wrp5udlce" + }, + { + "Name": "integrity", + "Value": "sha256-c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.3wrp5udlce.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3wrp5udlce" + }, + { + "Name": "integrity", + "Value": "sha256-c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.3wrp5udlce.js.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3wrp5udlce" + }, + { + "Name": "integrity", + "Value": "sha256-58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000231107003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c8Z0G8e/E4AVe1PdosHOBk6bPfVyLiWX4wSpUb+Euk4=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.b17k5vyw53.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000176553672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b17k5vyw53" + }, + { + "Name": "integrity", + "Value": "sha256-YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.b17k5vyw53.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15047" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b17k5vyw53" + }, + { + "Name": "integrity", + "Value": "sha256-YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.b17k5vyw53.map.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b17k5vyw53" + }, + { + "Name": "integrity", + "Value": "sha256-1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-58a07EPjE382lCQlOXSxytYIJFiz1bOx/PN0AV1ylFM=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000176553672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15047" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YX7u2MMo0SzWrDmm+NBiBrIO/AaKyL6C91jhFAzBOeE=" + } + ] + }, + { + "Route": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz", + "AssetFile": "adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1zhPC0bMEoPnltyYCjUr9doBuGL3opIgKeJxEnNTxzM=" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.ai6pjh167g.js", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000130667712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ai6pjh167g" + }, + { + "Name": "integrity", + "Value": "sha256-MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fastclick/fastclick.js" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.ai6pjh167g.js", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ai6pjh167g" + }, + { + "Name": "integrity", + "Value": "sha256-MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fastclick/fastclick.js" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.ai6pjh167g.js.gz", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ai6pjh167g" + }, + { + "Name": "integrity", + "Value": "sha256-pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fastclick/fastclick.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.js", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000130667712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.js", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "26806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MlRJRfTG1kRU5S/H3p+G6M0I+7vnt0XeyahrImL3kS8=" + } + ] + }, + { + "Route": "adminlte/plugins/fastclick/fastclick.js.gz", + "AssetFile": "adminlte/plugins/fastclick/fastclick.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pYvrXttZVfAavqE5rCg3Tu84nvoc4GwRNlt8HqEeie0=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090057637" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "48805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.js.gz", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.ux88dou5p2.js", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090057637" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ux88dou5p2" + }, + { + "Name": "integrity", + "Value": "sha256-QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.ux88dou5p2.js", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ux88dou5p2" + }, + { + "Name": "integrity", + "Value": "sha256-QoxOJaQDUFJzcL8JoS8uylKkzwaulPKwZC6c7sWUqHc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/filterizr.min.ux88dou5p2.js.gz", + "AssetFile": "adminlte/plugins/filterizr/filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ux88dou5p2" + }, + { + "Name": "integrity", + "Value": "sha256-EqfO5YIkSI4crgk4d1/4mi9kAHwnku5awRaeEvL9i/w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/filterizr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000089086860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "49207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.wbhes8a006.js", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000089086860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbhes8a006" + }, + { + "Name": "integrity", + "Value": "sha256-xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/jquery.filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.wbhes8a006.js", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "49207" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbhes8a006" + }, + { + "Name": "integrity", + "Value": "sha256-xFQENiENalLJA0S/d6pcOG34j4cd+LGelNzLo+Nb0Ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/jquery.filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/jquery.filterizr.min.wbhes8a006.js.gz", + "AssetFile": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wbhes8a006" + }, + { + "Name": "integrity", + "Value": "sha256-0qWqjYIqSPxb5U6SBnuZt33uJsUkJXWV96bB1Y/loIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/jquery.filterizr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090407739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.js", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "48645" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.rv3br3vnl3.js", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000090407739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv3br3vnl3" + }, + { + "Name": "integrity", + "Value": "sha256-Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/vanilla.filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.rv3br3vnl3.js", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48645" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv3br3vnl3" + }, + { + "Name": "integrity", + "Value": "sha256-Z39X/020fLsABlseAjAXqn1t5hun6akSwio8p3mCLRQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/vanilla.filterizr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/filterizr/vanilla.filterizr.min.rv3br3vnl3.js.gz", + "AssetFile": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11060" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv3br3vnl3" + }, + { + "Name": "integrity", + "Value": "sha256-3+BOVdpj7hkjbbi5ycvoPignVzOgrrYTXfRQnyaiqbA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/filterizr/vanilla.filterizr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.117lwhek57.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000352733686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2834" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "117lwhek57" + }, + { + "Name": "integrity", + "Value": "sha256-1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.css" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.117lwhek57.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "39720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "117lwhek57" + }, + { + "Name": "integrity", + "Value": "sha256-1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.css" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.117lwhek57.css.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2834" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "117lwhek57" + }, + { + "Name": "integrity", + "Value": "sha256-soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000352733686" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2834" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "39720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fq4PTz7e0BqNRywu7ojNAdar4v6DCHIuavxVEk3Ojc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2834" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-soyYbQD2cO7RlbIP0w7b5EzPFy+MdDvt5McWSLzVBjM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000354735722" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "33962" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.t0t8ha6ads.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000354735722" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0t8ha6ads" + }, + { + "Name": "integrity", + "Value": "sha256-E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.t0t8ha6ads.css", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "33962" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0t8ha6ads" + }, + { + "Name": "integrity", + "Value": "sha256-E8LlTRCdVB78cVfwxKPTMfcV9bHV1ItmUS0+H+Gdgjs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/css/flag-icon.min.t0t8ha6ads.css.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2818" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0t8ha6ads" + }, + { + "Name": "integrity", + "Value": "sha256-Sxa4QeL6xqffFKZ8QtI8RZOBwqRt0aJNrHDWC6MwLOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/css/flag-icon.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.o11pkyrp7u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085149864" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o11pkyrp7u" + }, + { + "Name": "integrity", + "Value": "sha256-dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.o11pkyrp7u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o11pkyrp7u" + }, + { + "Name": "integrity", + "Value": "sha256-dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.o11pkyrp7u.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o11pkyrp7u" + }, + { + "Name": "integrity", + "Value": "sha256-Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000085149864" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dOIZhzWpJvqu/PFyqFi1AOwUxNGvL52jceMtXFKtbvI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ad.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ga7ba2Tk8YdHB/Iv394+fUkBlzjChI/gjkMrNQ2145w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.bv6bvpq0gj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005494505495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bv6bvpq0gj" + }, + { + "Name": "integrity", + "Value": "sha256-eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.bv6bvpq0gj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "268" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bv6bvpq0gj" + }, + { + "Name": "integrity", + "Value": "sha256-eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.bv6bvpq0gj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bv6bvpq0gj" + }, + { + "Name": "integrity", + "Value": "sha256-vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005494505495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "268" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eeVPyKzg4rWRta9GagIkb4CmfNyKHPpARr7bZf2gEX4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ae.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vUx5/kqogbdq6X0KAYPi503WrwvVWrEV7KsbM+yyFpo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.ewlvn89r2j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000118245241" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ewlvn89r2j" + }, + { + "Name": "integrity", + "Value": "sha256-nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.ewlvn89r2j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21009" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ewlvn89r2j" + }, + { + "Name": "integrity", + "Value": "sha256-nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.ewlvn89r2j.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ewlvn89r2j" + }, + { + "Name": "integrity", + "Value": "sha256-MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000118245241" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "21009" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nmf/6PUX+5URqWQ8ytmBo6WTKzJu1Begrkd85O8ZYJs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/af.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MxqSY+tB0qBWjCQnn4wTxJOy7UDfZ/5wmkOGn1v1gdA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.0fi3w7gxml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fi3w7gxml" + }, + { + "Name": "integrity", + "Value": "sha256-BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.0fi3w7gxml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "775" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fi3w7gxml" + }, + { + "Name": "integrity", + "Value": "sha256-BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.0fi3w7gxml.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fi3w7gxml" + }, + { + "Name": "integrity", + "Value": "sha256-2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "775" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BKQ9J0RvnVX7Y0M0PSS68tjK4PoNVsrqoTVHd7zWKOo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ag.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2s+xWjqpYTBXBloVgZlb9hCXQ+OFb/UfheaFUCw4afA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.gwskadjs06.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132784491" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gwskadjs06" + }, + { + "Name": "integrity", + "Value": "sha256-UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.gwskadjs06.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "48962" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gwskadjs06" + }, + { + "Name": "integrity", + "Value": "sha256-UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.gwskadjs06.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gwskadjs06" + }, + { + "Name": "integrity", + "Value": "sha256-atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132784491" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "48962" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UJ3+2TuroI4VrLAyQ+MTp72R29oqQmMBFloGc/ggFcs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ai.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-atvW3qAFB3Gpb/fjSLTj5EPPKVo21yje8B1pWSLYTYI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.mlkg39dmim.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645994832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mlkg39dmim" + }, + { + "Name": "integrity", + "Value": "sha256-SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.mlkg39dmim.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mlkg39dmim" + }, + { + "Name": "integrity", + "Value": "sha256-SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.mlkg39dmim.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mlkg39dmim" + }, + { + "Name": "integrity", + "Value": "sha256-HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645994832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SsMf2LXG5YtJSCnJRHOnZ+vjDOv40WALBryBaS9mG8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/al.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HYC0jE7BQEN7j6PjaxDYwRbhKbJAkljczZpOF1h4++Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.3qo5cct9w2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qo5cct9w2" + }, + { + "Name": "integrity", + "Value": "sha256-a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.3qo5cct9w2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qo5cct9w2" + }, + { + "Name": "integrity", + "Value": "sha256-a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.3qo5cct9w2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3qo5cct9w2" + }, + { + "Name": "integrity", + "Value": "sha256-vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a1g0iPnYuAI3HeTF6FUhYdD9u4Is/9qFu55h5pBjwqc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/am.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAu3088+Ta5wzVGkfzfe+nXCwU6x7vID8lwpcgguadQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.s1d4kvt949.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1d4kvt949" + }, + { + "Name": "integrity", + "Value": "sha256-EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.s1d4kvt949.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1601" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1d4kvt949" + }, + { + "Name": "integrity", + "Value": "sha256-EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.s1d4kvt949.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1d4kvt949" + }, + { + "Name": "integrity", + "Value": "sha256-Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1601" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EJsKMJ+dUx9cxIzhq7SrIyjjMCY/WV831pfEu8N5TwE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ao.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ov/dN/gkCe2U1GWJ+B/OZN+37dS7qj2OiTxTqJGSmVY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.sh56ie60v8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000367647059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh56ie60v8" + }, + { + "Name": "integrity", + "Value": "sha256-UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.sh56ie60v8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5963" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh56ie60v8" + }, + { + "Name": "integrity", + "Value": "sha256-UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.sh56ie60v8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh56ie60v8" + }, + { + "Name": "integrity", + "Value": "sha256-o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000367647059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5963" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UAvAd2V2KF5oX7IgFokg8ehqaqojGALTin17hTrPpiI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o6tR/EjXstKrF+Z4kX704cmK4J2a+BFGed1yRav1ra4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000831946755" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.v9qqgrpwat.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000831946755" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9qqgrpwat" + }, + { + "Name": "integrity", + "Value": "sha256-fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.v9qqgrpwat.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9qqgrpwat" + }, + { + "Name": "integrity", + "Value": "sha256-fQzlCRQpEPj+oT9hyMuL69jQ2emwXiv1MWhulYHsp14=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ar.v9qqgrpwat.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v9qqgrpwat" + }, + { + "Name": "integrity", + "Value": "sha256-Z1qp4mAK1nrwyVrN3SMf6HCVaSyQ0VWUJzqLOE4MI2k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ar.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308071473" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7861" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.zw6sae53ei.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308071473" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw6sae53ei" + }, + { + "Name": "integrity", + "Value": "sha256-/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.zw6sae53ei.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7861" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw6sae53ei" + }, + { + "Name": "integrity", + "Value": "sha256-/Zuqxlx/wzijWgkk0ih/Rez07wXhIKHmHa4R/CWyn8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/as.zw6sae53ei.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zw6sae53ei" + }, + { + "Name": "integrity", + "Value": "sha256-BoB0IuLSRoJmRJyjvLifBymgrhYcAB+vzyHpeHt4X58=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/as.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.75z6klj3gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005319148936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75z6klj3gy" + }, + { + "Name": "integrity", + "Value": "sha256-lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.75z6klj3gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "248" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75z6klj3gy" + }, + { + "Name": "integrity", + "Value": "sha256-lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.75z6klj3gy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "75z6klj3gy" + }, + { + "Name": "integrity", + "Value": "sha256-Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005319148936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "248" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lRC6anfOM1H6GLBhMHkLfROLx0CP/b9A/7W4tKnMC84=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/at.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "187" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y5/zNEfLUbdtsXbXcjGSiX6qkH3E3N6vX8b2C3lTWtE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.meuwx6gi00.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwx6gi00" + }, + { + "Name": "integrity", + "Value": "sha256-EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.meuwx6gi00.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwx6gi00" + }, + { + "Name": "integrity", + "Value": "sha256-EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.meuwx6gi00.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "meuwx6gi00" + }, + { + "Name": "integrity", + "Value": "sha256-3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EoXJ2tEEoBrnNPHEtAExxRQY9LDL1eoYX0kzKL35z4k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/au.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3OoVN/Wndepb5UoDD77mucTRoev6OSoji2v34E4cSFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.qewauog46h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000525486075" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1902" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qewauog46h" + }, + { + "Name": "integrity", + "Value": "sha256-kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.qewauog46h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12270" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qewauog46h" + }, + { + "Name": "integrity", + "Value": "sha256-kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.qewauog46h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1902" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qewauog46h" + }, + { + "Name": "integrity", + "Value": "sha256-q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000525486075" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1902" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "12270" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kgCc0B8vG1E7qeHsyPPYh++qAz0OJg/OmXrZNNk4aYM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/aw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1902" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q9Bmuij5IDzVhoqTT1qq2LxatFQfF5rTlmdWPnuYBAo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.rox1ebcdt8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003311258278" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rox1ebcdt8" + }, + { + "Name": "integrity", + "Value": "sha256-NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.rox1ebcdt8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rox1ebcdt8" + }, + { + "Name": "integrity", + "Value": "sha256-NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.rox1ebcdt8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rox1ebcdt8" + }, + { + "Name": "integrity", + "Value": "sha256-/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003311258278" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NcXXykwQod3w7gA15c1EJjntSD1zMRw5H+yGd6duMhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ax.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/qdi71mFYyfXDkdOE+/WCbpZ/JWdxghKGP1+yy7wq5M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003636363636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.v2upeibf0d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003636363636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2upeibf0d" + }, + { + "Name": "integrity", + "Value": "sha256-edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.v2upeibf0d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2upeibf0d" + }, + { + "Name": "integrity", + "Value": "sha256-edWXqOL1F5fZQugqm2FW78Bk88EiTDCJhU2TvkgVmOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/az.v2upeibf0d.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2upeibf0d" + }, + { + "Name": "integrity", + "Value": "sha256-PmwVfwcw2adyrml3H0rmFKKg3Zwb6f/AEk9jVtCUTDA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/az.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.dumjs39d17.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001879699248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "531" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dumjs39d17" + }, + { + "Name": "integrity", + "Value": "sha256-m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.dumjs39d17.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dumjs39d17" + }, + { + "Name": "integrity", + "Value": "sha256-m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.dumjs39d17.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "531" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dumjs39d17" + }, + { + "Name": "integrity", + "Value": "sha256-LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001879699248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "531" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m60Gfk8Cx//Z1sc24gZSHsmkLk50aVH3232oQDC0NQk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ba.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "531" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LKc6u2UmBs59zTrR8MQxrNmz3dhIzz3CjodFwnDP6ss=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.sj1u7n26qv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002544529262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "392" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sj1u7n26qv" + }, + { + "Name": "integrity", + "Value": "sha256-qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.sj1u7n26qv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sj1u7n26qv" + }, + { + "Name": "integrity", + "Value": "sha256-qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.sj1u7n26qv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "392" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sj1u7n26qv" + }, + { + "Name": "integrity", + "Value": "sha256-pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002544529262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "392" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qNlYaumYyEywBs0o/FaBV25qZ7Hh+mskZCKT8qSIFkM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "392" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pF1KjxEXKNC91bhxrhgac2caOUbiOVDeBykxTt1aybE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.8wvcs3d299.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8wvcs3d299" + }, + { + "Name": "integrity", + "Value": "sha256-eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.8wvcs3d299.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8wvcs3d299" + }, + { + "Name": "integrity", + "Value": "sha256-eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.8wvcs3d299.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8wvcs3d299" + }, + { + "Name": "integrity", + "Value": "sha256-GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eATEnyFNA/kWeSTg9XC6173kqNOU5wo9HZwS1lry8wY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKzvN1h4uRewKtuOqAKTXTpIXW/fy0/zbhsAuWlf/LY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004629629630" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.upvz34mulp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004629629630" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upvz34mulp" + }, + { + "Name": "integrity", + "Value": "sha256-Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.upvz34mulp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upvz34mulp" + }, + { + "Name": "integrity", + "Value": "sha256-Ut7ASmsPQHQoASy9dY9dKevyGxURT2aqyZvEhpWMGbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/be.upvz34mulp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "215" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upvz34mulp" + }, + { + "Name": "integrity", + "Value": "sha256-o7UmwjPO//WbimgpetuS4qxws5KNPWlKbMRScSElalY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/be.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.wttxdblqtu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wttxdblqtu" + }, + { + "Name": "integrity", + "Value": "sha256-RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.wttxdblqtu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wttxdblqtu" + }, + { + "Name": "integrity", + "Value": "sha256-RB7+21RhzTBx6pCvLUUl8FvpYCaHx4L3iLkjoI20DCw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bf.wttxdblqtu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wttxdblqtu" + }, + { + "Name": "integrity", + "Value": "sha256-C56h5MgqemXHfVzKrlPe4jIjuC2TiF7QZYzObHwHKTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.gpk8uysluo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpk8uysluo" + }, + { + "Name": "integrity", + "Value": "sha256-1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.gpk8uysluo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpk8uysluo" + }, + { + "Name": "integrity", + "Value": "sha256-1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.gpk8uysluo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpk8uysluo" + }, + { + "Name": "integrity", + "Value": "sha256-myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1MBvca3OyOY0C9eDFehoVaQR7XNBAd6N2HwndRPr8hM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-myukcl29PWgE0CkzKK2l2wkJMU8q03pSzMJvUbZdq78=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.jx1crcgqed.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx1crcgqed" + }, + { + "Name": "integrity", + "Value": "sha256-x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.jx1crcgqed.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx1crcgqed" + }, + { + "Name": "integrity", + "Value": "sha256-x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.jx1crcgqed.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx1crcgqed" + }, + { + "Name": "integrity", + "Value": "sha256-ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003623188406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x79xDqSMh7os5LixBao7EanDi37n2kQ1D0EZPDH+UM8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "275" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZXoOcrBI9d37r9ilVzbT0Q71VfucTvvQNgg7oZIsFT8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001972386588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1057" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.vb9375k7dq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001972386588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vb9375k7dq" + }, + { + "Name": "integrity", + "Value": "sha256-BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.vb9375k7dq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1057" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vb9375k7dq" + }, + { + "Name": "integrity", + "Value": "sha256-BRP/t3YTsvGM58fmomftZHFxit+68OwbSwWZg0n6H/A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bi.vb9375k7dq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vb9375k7dq" + }, + { + "Name": "integrity", + "Value": "sha256-rQY/jajwcr3KVFxVnhycAWta4x4Qwj5XltIyNyqcsv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.yg8jfj6mjf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yg8jfj6mjf" + }, + { + "Name": "integrity", + "Value": "sha256-XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.yg8jfj6mjf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yg8jfj6mjf" + }, + { + "Name": "integrity", + "Value": "sha256-XtN0aCQOjLeADO5qHPVBFXdIah7g1uwGDxc28ARjn24=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bj.yg8jfj6mjf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yg8jfj6mjf" + }, + { + "Name": "integrity", + "Value": "sha256-F+j6mFapHO/KzDPPGfJxTlDsrv70cSxBlOlmiSEDfqI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.u9ipalaa9l.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9ipalaa9l" + }, + { + "Name": "integrity", + "Value": "sha256-wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.u9ipalaa9l.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9ipalaa9l" + }, + { + "Name": "integrity", + "Value": "sha256-wgZEjYxcUr4R+Ehw9AAw9q4PmC6Dq3/sgXsAdsegjWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bl.u9ipalaa9l.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9ipalaa9l" + }, + { + "Name": "integrity", + "Value": "sha256-YqhduMPcxVTyneoC6/cmL1bLUOxZPfxxKaA5UjuFIkM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.me5jc9svpr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000142836738" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7000" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me5jc9svpr" + }, + { + "Name": "integrity", + "Value": "sha256-HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.me5jc9svpr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me5jc9svpr" + }, + { + "Name": "integrity", + "Value": "sha256-HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.me5jc9svpr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7000" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me5jc9svpr" + }, + { + "Name": "integrity", + "Value": "sha256-zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000142836738" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7000" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "22368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HnIFjNpy1JlNY/TQQTJugijxI+9aeEncHDuMwMqpMgA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7000" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zumgyGlOTdfQXK6gJ2Yws2OnNNmXyXBhEQXeCT6yzpc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.41w6na0e1c.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165864986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6028" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41w6na0e1c" + }, + { + "Name": "integrity", + "Value": "sha256-WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.41w6na0e1c.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14395" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41w6na0e1c" + }, + { + "Name": "integrity", + "Value": "sha256-WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.41w6na0e1c.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6028" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "41w6na0e1c" + }, + { + "Name": "integrity", + "Value": "sha256-Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165864986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6028" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "14395" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WLk6F4v9jbeFDYZwaK4HKuK0MCj/Agz/HrHCOnS6jDc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6028" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Arc7Zzrak5gPplCXb0HxDMxMEzxS6tXoWMBvGMTwVOg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.1i92fmke3w.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035467281" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1i92fmke3w" + }, + { + "Name": "integrity", + "Value": "sha256-Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.1i92fmke3w.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "119337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1i92fmke3w" + }, + { + "Name": "integrity", + "Value": "sha256-Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.1i92fmke3w.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1i92fmke3w" + }, + { + "Name": "integrity", + "Value": "sha256-QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035467281" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "119337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zxxc8MvjbzrG/k5+LgOfwZTpB7TypniNKhRBxj03+QM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QkaQZNqxOIKSIWIJSNDz4Pc+EadDdOrbtVN6NSF/oiE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.9fluf493cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9fluf493cf" + }, + { + "Name": "integrity", + "Value": "sha256-9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.9fluf493cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9fluf493cf" + }, + { + "Name": "integrity", + "Value": "sha256-9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.9fluf493cf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9fluf493cf" + }, + { + "Name": "integrity", + "Value": "sha256-pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9RZ7VFCyUIcE1bhPzSNRazp3R+CJ9bFzjNPcEzsk9cg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pMlXS9VZ7jimCeJTW1rJRNverqIWDPKyuheUqFULGfs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.eqwxoozcot.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383729854" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eqwxoozcot" + }, + { + "Name": "integrity", + "Value": "sha256-CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.eqwxoozcot.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eqwxoozcot" + }, + { + "Name": "integrity", + "Value": "sha256-CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.eqwxoozcot.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eqwxoozcot" + }, + { + "Name": "integrity", + "Value": "sha256-PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383729854" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CjSLwUeJulL1ItdpV+peMweDIxUn9QPOdaQCgTdABIw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/br.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2605" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PMesSwbMxmU4BXL01HlkS8ALJsI8nbEH8Kd4VZuNTck=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.97butdfqyz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97butdfqyz" + }, + { + "Name": "integrity", + "Value": "sha256-y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.97butdfqyz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97butdfqyz" + }, + { + "Name": "integrity", + "Value": "sha256-y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.97butdfqyz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97butdfqyz" + }, + { + "Name": "integrity", + "Value": "sha256-8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y2p22VvQ18e0PXhDek6GTfE/NGxXCIcXhUvPgpkyI48=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ApvtF4jZjMis0ZAdKs9rCI+a8G9mENHFM8KY6PODT0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.2haxoc2ys7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000097219522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2haxoc2ys7" + }, + { + "Name": "integrity", + "Value": "sha256-uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.2haxoc2ys7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2haxoc2ys7" + }, + { + "Name": "integrity", + "Value": "sha256-uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.2haxoc2ys7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2haxoc2ys7" + }, + { + "Name": "integrity", + "Value": "sha256-SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000097219522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "25134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uuR26FZZQtiJZE8Ojjhhik2RmED0Odjutwpy2JUN0Vk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SB727u+aRpVETs4PFc46TVBOE6I/en0qJxQMO2mtyxo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.qkj3c8wwlc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkj3c8wwlc" + }, + { + "Name": "integrity", + "Value": "sha256-Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.qkj3c8wwlc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkj3c8wwlc" + }, + { + "Name": "integrity", + "Value": "sha256-Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.qkj3c8wwlc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkj3c8wwlc" + }, + { + "Name": "integrity", + "Value": "sha256-rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Js41/IlSf17ViLzkKlENDh8PTrkdxTutsgPetyfmRqE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rxMVmom98nQDbTs+kwI8I9HCe2obaCKAze9QiRBO7Dw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.9jzodiy4a5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jzodiy4a5" + }, + { + "Name": "integrity", + "Value": "sha256-5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.9jzodiy4a5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jzodiy4a5" + }, + { + "Name": "integrity", + "Value": "sha256-5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.9jzodiy4a5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jzodiy4a5" + }, + { + "Name": "integrity", + "Value": "sha256-/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Z41RBcV2bxLAfpMYkH6NzIepfQx/1+j9GxRSRw1ca4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/tTnafGPT9GZJVz0KMJxwG3dnfchcKZ1PYmoJ/+EXY8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.hm9uxidyka.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000552791598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hm9uxidyka" + }, + { + "Name": "integrity", + "Value": "sha256-OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.hm9uxidyka.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6108" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hm9uxidyka" + }, + { + "Name": "integrity", + "Value": "sha256-OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.hm9uxidyka.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hm9uxidyka" + }, + { + "Name": "integrity", + "Value": "sha256-YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000552791598" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6108" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OSW3anF6VSpSLsbF1GjL8sMB394BD1JHO9BoIW5wL+I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/by.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YFypE7RdQLg7eywx3ZsjjqdGr/xl1Tck42w5CaajLUc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.8ifwgb9ngx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000058840836" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16994" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ifwgb9ngx" + }, + { + "Name": "integrity", + "Value": "sha256-gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.8ifwgb9ngx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "46823" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ifwgb9ngx" + }, + { + "Name": "integrity", + "Value": "sha256-gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.8ifwgb9ngx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16994" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ifwgb9ngx" + }, + { + "Name": "integrity", + "Value": "sha256-UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000058840836" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16994" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "46823" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gH02wxFTlxuD7J+LaWJjkHjivJZS10WFI6u8e6ZrJ8w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/bz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16994" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UzHM/xRaEPVdPPNbAVBApmqyZhhNthqDVh2NpY1Kn7Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.rgmgci7hd1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgmgci7hd1" + }, + { + "Name": "integrity", + "Value": "sha256-RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.rgmgci7hd1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgmgci7hd1" + }, + { + "Name": "integrity", + "Value": "sha256-RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.rgmgci7hd1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rgmgci7hd1" + }, + { + "Name": "integrity", + "Value": "sha256-2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "712" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RWb0Wq2GEvyh5XFP98KbQnMhm08Rk+V+OYwiPPt+VaU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2/r74ygrGVCXGtURkVwk/tYi2US0JPKpBsOc/jNaFd8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.3gzqth923h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000722543353" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3gzqth923h" + }, + { + "Name": "integrity", + "Value": "sha256-DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.3gzqth923h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3102" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3gzqth923h" + }, + { + "Name": "integrity", + "Value": "sha256-DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.3gzqth923h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3gzqth923h" + }, + { + "Name": "integrity", + "Value": "sha256-o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000722543353" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3102" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DZn1LoulNWLK7t8frkV+THkyYLJlFQ0DHalcYXUSeQE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1383" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o2xNWXX3bHeiIcuoo15krQmRn1Bv114eEIi8mKCl/Xg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.6olvnit7ix.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003184713376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6olvnit7ix" + }, + { + "Name": "integrity", + "Value": "sha256-dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.6olvnit7ix.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6olvnit7ix" + }, + { + "Name": "integrity", + "Value": "sha256-dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.6olvnit7ix.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6olvnit7ix" + }, + { + "Name": "integrity", + "Value": "sha256-TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003184713376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "519" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dg4iqvRXHu1HCJvs/2mTTvIpt6kODAe8wz5IV9KqPlI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TuKcMrY7sae3myQdwk6pApowjgog6qjLAfrzUPBZBuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.8r7uqjpz8u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r7uqjpz8u" + }, + { + "Name": "integrity", + "Value": "sha256-PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.8r7uqjpz8u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r7uqjpz8u" + }, + { + "Name": "integrity", + "Value": "sha256-PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.8r7uqjpz8u.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r7uqjpz8u" + }, + { + "Name": "integrity", + "Value": "sha256-bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PKfKC8WBxpv7/QnhN2rfHT/ip2HopcAbd2r+hZs1P9g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bHRX0E5WUI68HI4SRL7pL7W0wMKchiEW7pNStHQJKzs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "481" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.w0m0xsx0ek.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0m0xsx0ek" + }, + { + "Name": "integrity", + "Value": "sha256-gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.w0m0xsx0ek.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "481" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0m0xsx0ek" + }, + { + "Name": "integrity", + "Value": "sha256-gM84NJUeb+PpZtrRjOsPbTCor1VjkXMLaGJ1wwHzgHQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cg.w0m0xsx0ek.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0m0xsx0ek" + }, + { + "Name": "integrity", + "Value": "sha256-w2g+yypT7VYcdsicNyiOfAxJZZOvv+ViKZT1r2oDeZY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.jceml3mr0b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004545454545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jceml3mr0b" + }, + { + "Name": "integrity", + "Value": "sha256-3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.jceml3mr0b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jceml3mr0b" + }, + { + "Name": "integrity", + "Value": "sha256-3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.jceml3mr0b.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jceml3mr0b" + }, + { + "Name": "integrity", + "Value": "sha256-o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004545454545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3cwNF3TokoyND+5KQuYELET3ot+YQ83CpXfhNs3nU0w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ch.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o58Mg5//3Wtrnn65OHycjb5hpXjUIOUb0BUBL1ny9eU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.s58woih20x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005025125628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s58woih20x" + }, + { + "Name": "integrity", + "Value": "sha256-sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.s58woih20x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s58woih20x" + }, + { + "Name": "integrity", + "Value": "sha256-sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.s58woih20x.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s58woih20x" + }, + { + "Name": "integrity", + "Value": "sha256-nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005025125628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sN5hFO/Qq9+H2eI1gw65RA9TW0+xkqgqKPmCJoU8/qk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ci.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nBk+sJqEOIuCTJHfQGH8heCOvKAKXePpEMvPo9NWMEY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.8qmrzscz66.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qmrzscz66" + }, + { + "Name": "integrity", + "Value": "sha256-0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.8qmrzscz66.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2031" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qmrzscz66" + }, + { + "Name": "integrity", + "Value": "sha256-0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.8qmrzscz66.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qmrzscz66" + }, + { + "Name": "integrity", + "Value": "sha256-4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2031" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0B7kSL1iGNJEN45mk6asw7U9qGNIZsthCQgL8TZWIgE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ck.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4qrlCYCP+bDutOgmO23JPK7QtRX0mSTbrpTXiE3BFjA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.fn6z8rh9nq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002906976744" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fn6z8rh9nq" + }, + { + "Name": "integrity", + "Value": "sha256-a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.fn6z8rh9nq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "587" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fn6z8rh9nq" + }, + { + "Name": "integrity", + "Value": "sha256-a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.fn6z8rh9nq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fn6z8rh9nq" + }, + { + "Name": "integrity", + "Value": "sha256-1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002906976744" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "587" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a7CE9MmRY4IXE5NnEj6Ne39VPlVdzOiOGdqhfZFtJiI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1bamDCmyRghfRn03je6ZWVGA/n17mKH+5lMHD1PM8ds=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.61bvqf725k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61bvqf725k" + }, + { + "Name": "integrity", + "Value": "sha256-mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.61bvqf725k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61bvqf725k" + }, + { + "Name": "integrity", + "Value": "sha256-mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.61bvqf725k.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61bvqf725k" + }, + { + "Name": "integrity", + "Value": "sha256-eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mi+bQqe3m0QBQ7Mf3xCoOPJvES30sd+jbUUFNge4l1s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eNVSbjdjCmDDRq6kn3eiy4nhET7PgSNhB9uKZXTXJo0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.ksr3a0pzyx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ksr3a0pzyx" + }, + { + "Name": "integrity", + "Value": "sha256-jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.ksr3a0pzyx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ksr3a0pzyx" + }, + { + "Name": "integrity", + "Value": "sha256-jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.ksr3a0pzyx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ksr3a0pzyx" + }, + { + "Name": "integrity", + "Value": "sha256-Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jLYLjjWKpeDtBSQXGXrqmwu9JS1De57D5oj9NiBrV+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ht/aFTtQKYekCzqYxEeZdKC5LWcAoXRrVWxrwIJSqIw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.2hss1hi74n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hss1hi74n" + }, + { + "Name": "integrity", + "Value": "sha256-JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.2hss1hi74n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hss1hi74n" + }, + { + "Name": "integrity", + "Value": "sha256-JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.2hss1hi74n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hss1hi74n" + }, + { + "Name": "integrity", + "Value": "sha256-05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JuTlwX60gKU45cZfpZzCHddAe6VRpJ/QB7NPJqNPbm4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/co.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-05yHMlFl2xaOaGLQI4QVWwEserFFBcGePfBliceEflg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.hniwps0t55.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hniwps0t55" + }, + { + "Name": "integrity", + "Value": "sha256-k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.hniwps0t55.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hniwps0t55" + }, + { + "Name": "integrity", + "Value": "sha256-k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.hniwps0t55.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hniwps0t55" + }, + { + "Name": "integrity", + "Value": "sha256-YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k/AHkYXZ2TDSMmjs2ttSZG2v6pVqkXsx2AvOB1Jb8e8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YoKA9C1MFANqefl5GqM9l7c9Jyxosxxi/QMdsnG7s78=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.dglhqa7wto.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dglhqa7wto" + }, + { + "Name": "integrity", + "Value": "sha256-I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.dglhqa7wto.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "586" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dglhqa7wto" + }, + { + "Name": "integrity", + "Value": "sha256-I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.dglhqa7wto.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dglhqa7wto" + }, + { + "Name": "integrity", + "Value": "sha256-x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "586" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I0eQXHda14LEXiY+Bbsa3bdbYrgljWytSgH6rQ9hGp0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x/rWKu8FUO9Bf2YNyb3Q0sR7iE52jLFi4hejAv9XLys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.cf77v5g02h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001838235294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "543" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cf77v5g02h" + }, + { + "Name": "integrity", + "Value": "sha256-qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.cf77v5g02h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1370" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cf77v5g02h" + }, + { + "Name": "integrity", + "Value": "sha256-qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.cf77v5g02h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "543" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cf77v5g02h" + }, + { + "Name": "integrity", + "Value": "sha256-H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001838235294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "543" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1370" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qCt0ASD5cDn81jz068tg+Ne1UPrN5gc0sIBHQUHQe3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "543" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H+apmW2Px0MTflFT8hGA5HSm8ws5g77Z3B3btm4aynM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.et2g9b00sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "et2g9b00sr" + }, + { + "Name": "integrity", + "Value": "sha256-vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.et2g9b00sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "et2g9b00sr" + }, + { + "Name": "integrity", + "Value": "sha256-vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.et2g9b00sr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "et2g9b00sr" + }, + { + "Name": "integrity", + "Value": "sha256-a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vtjgo/Mvz6++ufEIdu6PMR3xLS9NO97Qd9kY/jMLz/4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a7NuDIIz62IvuFxcemzF47eTR1mSSczNjkVU24E2CQk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.5ddvmq7xow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000864304235" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1156" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ddvmq7xow" + }, + { + "Name": "integrity", + "Value": "sha256-aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.5ddvmq7xow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2511" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ddvmq7xow" + }, + { + "Name": "integrity", + "Value": "sha256-aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.5ddvmq7xow.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1156" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ddvmq7xow" + }, + { + "Name": "integrity", + "Value": "sha256-nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000864304235" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1156" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2511" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aYM2l+hsEGhSFjqXItExwhK2h1kdKMKNv5Q+XPuVXgU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1156" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nOAn8Bx8DOwTLQmokWBoPJK14xmDpdUVhuInYg8+LTk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383435583" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5961" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.woke2z4sjl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000383435583" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "woke2z4sjl" + }, + { + "Name": "integrity", + "Value": "sha256-QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.woke2z4sjl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5961" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "woke2z4sjl" + }, + { + "Name": "integrity", + "Value": "sha256-QE6EY+MiaCo4qaj38+RIGLsO6gyipnHQLfVEbTWdRIc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cy.woke2z4sjl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2607" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "woke2z4sjl" + }, + { + "Name": "integrity", + "Value": "sha256-0iOKIuE3TVnL8QZxlezf0yEk6WvOH+TziJe0sw9LZkU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.70r309crpv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "70r309crpv" + }, + { + "Name": "integrity", + "Value": "sha256-iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.70r309crpv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "70r309crpv" + }, + { + "Name": "integrity", + "Value": "sha256-iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.70r309crpv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "70r309crpv" + }, + { + "Name": "integrity", + "Value": "sha256-iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iRBTAtC5XTnOL7ughm9Zj5gkyB7HM2RUoh6uwj2vmC4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/cz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iv4Z63twRrzQJshdlNqHDNAKnpxTKjg/FegYqaIoptM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.wa3i4ku7hj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wa3i4ku7hj" + }, + { + "Name": "integrity", + "Value": "sha256-ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.wa3i4ku7hj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wa3i4ku7hj" + }, + { + "Name": "integrity", + "Value": "sha256-ONU8/O6c3J8KrOmKx7YBQWiukmSkk6BHMH3DIuqj+6Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/de.wa3i4ku7hj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wa3i4ku7hj" + }, + { + "Name": "integrity", + "Value": "sha256-XS85VlwSMx0nvwEROtS77gWkBXSGwm935Nx6cfRaUu0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/de.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002785515320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.z8l9u473fl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002785515320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8l9u473fl" + }, + { + "Name": "integrity", + "Value": "sha256-03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.z8l9u473fl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8l9u473fl" + }, + { + "Name": "integrity", + "Value": "sha256-03Epu+/DwSVbXTbgWcHWYhgo5NgBPh3tHmJEvfra5XI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dj.z8l9u473fl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8l9u473fl" + }, + { + "Name": "integrity", + "Value": "sha256-ebefqkVDFOXvabQAfoMUVxFLr0x1uRdVCKcqjSvH0d4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.50jt2n3myd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50jt2n3myd" + }, + { + "Name": "integrity", + "Value": "sha256-i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.50jt2n3myd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "240" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50jt2n3myd" + }, + { + "Name": "integrity", + "Value": "sha256-i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.50jt2n3myd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50jt2n3myd" + }, + { + "Name": "integrity", + "Value": "sha256-xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "240" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i0y27iJL5MCzfrDTBBYXdU4XBa1CDt2xpB6Fpcz9btM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xuWlXMWWfDczHU3qt7AlTt2D6ofWdbWcYj9dTXgXs+M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.i793kwfp1r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299580587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i793kwfp1r" + }, + { + "Name": "integrity", + "Value": "sha256-omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.i793kwfp1r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16609" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i793kwfp1r" + }, + { + "Name": "integrity", + "Value": "sha256-omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.i793kwfp1r.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i793kwfp1r" + }, + { + "Name": "integrity", + "Value": "sha256-MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299580587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "16609" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-omq1XkxmKkGmRQYZ6MfNrkdFcOX3KupI8XkT4uRdyzY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MqFaNWwSZ+RdSqBk8L9mwCNCOm7yeixgJOJ3sZaGjKA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.cqjo3v2r9e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000020130851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cqjo3v2r9e" + }, + { + "Name": "integrity", + "Value": "sha256-5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.cqjo3v2r9e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "398114" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cqjo3v2r9e" + }, + { + "Name": "integrity", + "Value": "sha256-5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.cqjo3v2r9e.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cqjo3v2r9e" + }, + { + "Name": "integrity", + "Value": "sha256-bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000020130851" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "398114" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Bgohs1+QX1PDvIPqxrDUhHavy2sr7UBcoIuH4KF5cg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/do.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "49674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bhu21dm5piqM+WhzkyrrXL/gRXYk0fYa8oaq0L293Ms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004484304933" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.xgjptvknhe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004484304933" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xgjptvknhe" + }, + { + "Name": "integrity", + "Value": "sha256-0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.xgjptvknhe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xgjptvknhe" + }, + { + "Name": "integrity", + "Value": "sha256-0UdR1zAmVN9p1bqISR77gsRSI2rXXzJdR01RQv2Y73U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/dz.xgjptvknhe.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xgjptvknhe" + }, + { + "Name": "integrity", + "Value": "sha256-/UrogjG3OqlZ/WtbhHxluNRM/YoyZXJMbPx/MQrW5FA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/dz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.1ijacn6b84.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000143163923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6984" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ijacn6b84" + }, + { + "Name": "integrity", + "Value": "sha256-OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.1ijacn6b84.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30013" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ijacn6b84" + }, + { + "Name": "integrity", + "Value": "sha256-OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.1ijacn6b84.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6984" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ijacn6b84" + }, + { + "Name": "integrity", + "Value": "sha256-920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000143163923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6984" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "30013" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OemONgZseXY+fLQwAB6iEHBhVWQYPY+c58I+u354M3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ec.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6984" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-920cB2AWsH9wQz/PqAqJMaFFotta4Ax9YG16mUobXYk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.11c2kdq278.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11c2kdq278" + }, + { + "Name": "integrity", + "Value": "sha256-m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.11c2kdq278.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11c2kdq278" + }, + { + "Name": "integrity", + "Value": "sha256-m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.11c2kdq278.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "11c2kdq278" + }, + { + "Name": "integrity", + "Value": "sha256-fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m07YPYEoL+LFByTdVfBNB2slFSa+N0FPe5//c6HZ7lQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ee.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fKqDdSR8+MGCxI4pLvJcV12vg3IXIh4HUWn2b1m4Z1E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.mqblsrxcwn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000252143217" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqblsrxcwn" + }, + { + "Name": "integrity", + "Value": "sha256-rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.mqblsrxcwn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9951" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqblsrxcwn" + }, + { + "Name": "integrity", + "Value": "sha256-rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.mqblsrxcwn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqblsrxcwn" + }, + { + "Name": "integrity", + "Value": "sha256-X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000252143217" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9951" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rib0VnazAyscfek9RRVo1HJqxaO8IRZ7FyxsZbAZGN4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4H3oFkEfLSls435BviwR/6lqc8LdTglinxRXxgEzOg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.qfhd528vl7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfhd528vl7" + }, + { + "Name": "integrity", + "Value": "sha256-ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.qfhd528vl7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfhd528vl7" + }, + { + "Name": "integrity", + "Value": "sha256-ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.qfhd528vl7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfhd528vl7" + }, + { + "Name": "integrity", + "Value": "sha256-KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ermNaFz8OZSGlKDVqNRpiDgaCMwczDKffaZYgTx6Hoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KUpvMgfUn1UzdNGOSJ+MnlTvObUV6RckIjdNabMcPEw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.j33guwfkso.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000619962802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1612" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j33guwfkso" + }, + { + "Name": "integrity", + "Value": "sha256-UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.j33guwfkso.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3384" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j33guwfkso" + }, + { + "Name": "integrity", + "Value": "sha256-UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.j33guwfkso.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1612" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j33guwfkso" + }, + { + "Name": "integrity", + "Value": "sha256-47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000619962802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1612" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3384" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UT4E+TMrXrHohBLQOQpmNxjqkBPXAId3PMninDIdxLE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/er.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1612" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-47ELENoRUCFl/ey28hCOV7/ymLqqOc+E+YZEK4hPHBI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.hayqg9vwo0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hayqg9vwo0" + }, + { + "Name": "integrity", + "Value": "sha256-5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.hayqg9vwo0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hayqg9vwo0" + }, + { + "Name": "integrity", + "Value": "sha256-5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.hayqg9vwo0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hayqg9vwo0" + }, + { + "Name": "integrity", + "Value": "sha256-JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5wvgsVsi0xqVNTw0FBKogQd3loOpGnlsB0TVXFOKCns=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JqVjGu7+zltF50xoeD1uYeB93YRlyLUw60MzIWwsIJA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.1y7ay23w4j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000206611570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y7ay23w4j" + }, + { + "Name": "integrity", + "Value": "sha256-uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.1y7ay23w4j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y7ay23w4j" + }, + { + "Name": "integrity", + "Value": "sha256-uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.1y7ay23w4j.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y7ay23w4j" + }, + { + "Name": "integrity", + "Value": "sha256-Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000206611570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "28452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uSDpmYjN4+BGfy5f6lq/tuJcjI/lYe+vLYPI29qMtKc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cdx+TuLTaxn7aOur44e3ThEfjh3Ri9ZwzXwAl791S2o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.3hh674ist8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000057733387" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3hh674ist8" + }, + { + "Name": "integrity", + "Value": "sha256-97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.3hh674ist8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "93093" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3hh674ist8" + }, + { + "Name": "integrity", + "Value": "sha256-97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.3hh674ist8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3hh674ist8" + }, + { + "Name": "integrity", + "Value": "sha256-bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000057733387" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "93093" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-97Tdxi/hnDpaY/K+5FLds1Ztl6xH7DvctEduZr0/o4M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/es.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bevWB8bfGCYDQ4px0NaUH65skgy3+OOiWi2wkT13fqA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.iz2grt7x8m.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz2grt7x8m" + }, + { + "Name": "integrity", + "Value": "sha256-4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.iz2grt7x8m.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1240" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz2grt7x8m" + }, + { + "Name": "integrity", + "Value": "sha256-4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.iz2grt7x8m.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz2grt7x8m" + }, + { + "Name": "integrity", + "Value": "sha256-B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1240" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4k1cfnYfIbu5tfNKmBjg2gSpRmKfzVQwrT5558Mw/Ug=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/et.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B9EVFFuJV6NO2Lxjns1yiXH0shBZZQj5DPk/hLnSk+M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.8p2b2lrfor.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002493765586" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8p2b2lrfor" + }, + { + "Name": "integrity", + "Value": "sha256-lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.8p2b2lrfor.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1278" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8p2b2lrfor" + }, + { + "Name": "integrity", + "Value": "sha256-lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.8p2b2lrfor.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8p2b2lrfor" + }, + { + "Name": "integrity", + "Value": "sha256-gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002493765586" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1278" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lPe0nKTmouOHwpONk6j1hifo7oHbKX5Uf8X6sM++tPw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/eu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBA0zbu4YceU2Mw2ljMLhtNgYo5Isbu4+WYtVfx85Kg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.p2gskjh2ou.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2gskjh2ou" + }, + { + "Name": "integrity", + "Value": "sha256-n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.p2gskjh2ou.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2gskjh2ou" + }, + { + "Name": "integrity", + "Value": "sha256-n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.p2gskjh2ou.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2gskjh2ou" + }, + { + "Name": "integrity", + "Value": "sha256-QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n2/0/x00p6ngzlpX+M0OTOgGZghRhP2TRMUGH59onhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZbI7ME/3eNKv0okiU1rQXpgGPT163K8AFiUQ5VerQg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.911itkggbh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098667982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "911itkggbh" + }, + { + "Name": "integrity", + "Value": "sha256-veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.911itkggbh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27643" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "911itkggbh" + }, + { + "Name": "integrity", + "Value": "sha256-veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.911itkggbh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "911itkggbh" + }, + { + "Name": "integrity", + "Value": "sha256-Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098667982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "27643" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-veJ8VZoxMcVD3n0mvVbI32aAWAKAlJ0sOGIutUiSZEM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ist6F654x9yZA096dLBNJzMMYNU9+C4SnSD8hdtU5Oc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.qhmpgfay6f.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000101657009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9836" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qhmpgfay6f" + }, + { + "Name": "integrity", + "Value": "sha256-HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.qhmpgfay6f.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31891" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qhmpgfay6f" + }, + { + "Name": "integrity", + "Value": "sha256-HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.qhmpgfay6f.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9836" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qhmpgfay6f" + }, + { + "Name": "integrity", + "Value": "sha256-uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000101657009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9836" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "31891" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HgqZDEeuIkFrIts7egD/rSc1EumFg+YSGVChv03yrEo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9836" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uFIPjIJhooDRYXk21lo+8fS1BIPipXXVamHBuv0ixf8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.i3zgqmk9xc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i3zgqmk9xc" + }, + { + "Name": "integrity", + "Value": "sha256-rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.i3zgqmk9xc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i3zgqmk9xc" + }, + { + "Name": "integrity", + "Value": "sha256-rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.i3zgqmk9xc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i3zgqmk9xc" + }, + { + "Name": "integrity", + "Value": "sha256-YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rgf/EhdgfeNueK1EI51Xcp4LkEX01lsIeWWOTxRFD2w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YMvHpTwM6Y1wbgcxqZT9G0xCblVjBjzCE9upTVshdGg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002898550725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "546" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.ypyckre3gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002898550725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypyckre3gn" + }, + { + "Name": "integrity", + "Value": "sha256-OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.ypyckre3gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "546" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypyckre3gn" + }, + { + "Name": "integrity", + "Value": "sha256-OkVtECord4ieCiJ2/YJhr14Ye+BfOiFllLU4qXusk3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fo.ypyckre3gn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypyckre3gn" + }, + { + "Name": "integrity", + "Value": "sha256-Elsz/BMh/A7fsixvz8mWQ+7QRBDmWkSdPGRKm5zHG00=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.652bxvp8jl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "652bxvp8jl" + }, + { + "Name": "integrity", + "Value": "sha256-mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.652bxvp8jl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "652bxvp8jl" + }, + { + "Name": "integrity", + "Value": "sha256-mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.652bxvp8jl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "652bxvp8jl" + }, + { + "Name": "integrity", + "Value": "sha256-N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mgxRq9SwKtUBaTO9JwL5YjWOY6v73vYLxgcS9kgvFvs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/fr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3IxzfxjMA2Ro9jkYQw+7Rssjc893e4BGMnwH80p8EA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.rjfguzuagz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005208333333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjfguzuagz" + }, + { + "Name": "integrity", + "Value": "sha256-t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.rjfguzuagz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjfguzuagz" + }, + { + "Name": "integrity", + "Value": "sha256-t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.rjfguzuagz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rjfguzuagz" + }, + { + "Name": "integrity", + "Value": "sha256-nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005208333333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1xvqtb42wUJlKj6T3/2aGELS58zHloeenG9+KQvRQ0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nUEi6k9Qty43g62BMOGzOOIb9oWNNPR40WrjAF/4zAE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.jiuxnbh50t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005714285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jiuxnbh50t" + }, + { + "Name": "integrity", + "Value": "sha256-RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.jiuxnbh50t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jiuxnbh50t" + }, + { + "Name": "integrity", + "Value": "sha256-RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.jiuxnbh50t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jiuxnbh50t" + }, + { + "Name": "integrity", + "Value": "sha256-ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005714285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RRTa11LbRvniEkZSYaSNqiQSuC0v3FybXwBeJQkYwQE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ge7sXAFsH9ZPuo7yIQUghLAv1J/xF0tz2pNxMoadQA4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.noo1lhnvhy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000158755358" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "noo1lhnvhy" + }, + { + "Name": "integrity", + "Value": "sha256-N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.noo1lhnvhy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26618" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "noo1lhnvhy" + }, + { + "Name": "integrity", + "Value": "sha256-N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.noo1lhnvhy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "noo1lhnvhy" + }, + { + "Name": "integrity", + "Value": "sha256-fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000158755358" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "26618" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3x9x43WYcdyla49KrvjSbOlHAEWNvwi3LDjvpxt72s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fVTuLcVtCoYbuYi+yU1g/7OIg7529hcySP/ptZJ0KA0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.rnu4mt80ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnu4mt80ne" + }, + { + "Name": "integrity", + "Value": "sha256-yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.rnu4mt80ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnu4mt80ne" + }, + { + "Name": "integrity", + "Value": "sha256-yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.rnu4mt80ne.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnu4mt80ne" + }, + { + "Name": "integrity", + "Value": "sha256-ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yaEcJTmMyn66+c9jK2F9K64FZFS85X5EO7+EFSX/kuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ALMaDuA3k3K9kdWdNKEDUWY0/engMbLzvMvvv1TxqZA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.iw2l51et39.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243249818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4110" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw2l51et39" + }, + { + "Name": "integrity", + "Value": "sha256-8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.iw2l51et39.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9064" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw2l51et39" + }, + { + "Name": "integrity", + "Value": "sha256-8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.iw2l51et39.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4110" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw2l51et39" + }, + { + "Name": "integrity", + "Value": "sha256-ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243249818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4110" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9064" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8uqw6fkQMB8oRLlI87rFbyLNpWN8Dhmdf+nKrQtcVRA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4110" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZSkib3CJNCXoY2mL7A2PRCQysnsTedQMknr9Vqmvba0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.hpl0z0f43z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hpl0z0f43z" + }, + { + "Name": "integrity", + "Value": "sha256-G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.hpl0z0f43z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hpl0z0f43z" + }, + { + "Name": "integrity", + "Value": "sha256-G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.hpl0z0f43z.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hpl0z0f43z" + }, + { + "Name": "integrity", + "Value": "sha256-MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "548" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G580u2xmgZ67ZCtD/fAi02gbsyIjiAzth5HVbBO9fKU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MRA3YpmMm2z75AwVAFisV82OlSydLL5W7GtxM6HFIm8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.2ih12wkq0z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001751313485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ih12wkq0z" + }, + { + "Name": "integrity", + "Value": "sha256-2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.2ih12wkq0z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ih12wkq0z" + }, + { + "Name": "integrity", + "Value": "sha256-2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.2ih12wkq0z.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ih12wkq0z" + }, + { + "Name": "integrity", + "Value": "sha256-Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001751313485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2pAEDjW39L9h9g/Jgpda+gP3Vqtsb9sXBcYcZitweC8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zgj7mHwIA+nPApdYMYnU6dz60opMEzkf8L2bS7PvqNY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.qtl9onwq18.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtl9onwq18" + }, + { + "Name": "integrity", + "Value": "sha256-vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.qtl9onwq18.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtl9onwq18" + }, + { + "Name": "integrity", + "Value": "sha256-vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.qtl9onwq18.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtl9onwq18" + }, + { + "Name": "integrity", + "Value": "sha256-Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vipoStYG2HNDN3EtBjclw/LDXPATCJ9VlHB73Td6pAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ge.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lng17ovodIkhOsmc2RFv9No5bKUhQNmaPhl8W4w1gsM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.li4fg170h6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li4fg170h6" + }, + { + "Name": "integrity", + "Value": "sha256-Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.li4fg170h6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li4fg170h6" + }, + { + "Name": "integrity", + "Value": "sha256-Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.li4fg170h6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li4fg170h6" + }, + { + "Name": "integrity", + "Value": "sha256-kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yxf+e6stkIOCyPalqw7rN0inW1ZMw0im5UK45Ibl3ZI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kfjy/ezxuym67qAJUT245dVfr1uZqGZyv6fu4P3Fay0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.pvm19qj17y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pvm19qj17y" + }, + { + "Name": "integrity", + "Value": "sha256-6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.pvm19qj17y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pvm19qj17y" + }, + { + "Name": "integrity", + "Value": "sha256-6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.pvm19qj17y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pvm19qj17y" + }, + { + "Name": "integrity", + "Value": "sha256-lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6xRYPqmTGlm4lmxcSEVKgB0yJdP6asRMH/uKQnEtSzI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lY0gLaGN7Ot/wmyy4B2NCTHrXTvfwOOyAdRTi37yvA0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.kqbvmtk4r3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqbvmtk4r3" + }, + { + "Name": "integrity", + "Value": "sha256-LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.kqbvmtk4r3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqbvmtk4r3" + }, + { + "Name": "integrity", + "Value": "sha256-LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.kqbvmtk4r3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqbvmtk4r3" + }, + { + "Name": "integrity", + "Value": "sha256-InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LPfL+sU18ZwAzbG4r4Io4uPmuHfWyWn93oUszEM4Hb0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-InFlEQZpQRrkbosU7qP+qsi+ADje7wekZcXHRz8ysEY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000745156483" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2962" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.w2xycky6k0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000745156483" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xycky6k0" + }, + { + "Name": "integrity", + "Value": "sha256-+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.w2xycky6k0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2962" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xycky6k0" + }, + { + "Name": "integrity", + "Value": "sha256-+NcKx3HjrDJG21p5t9K7Hd6Q6kivIvmuFAVcigkR/U0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gi.w2xycky6k0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xycky6k0" + }, + { + "Name": "integrity", + "Value": "sha256-MRGN8KkUOxwC008obx+p2eqZAS8ViAca96JjCSkYOuw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005376344086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.zajmib3mxl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005376344086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zajmib3mxl" + }, + { + "Name": "integrity", + "Value": "sha256-OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.zajmib3mxl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zajmib3mxl" + }, + { + "Name": "integrity", + "Value": "sha256-OxkekeQYMos0UMJ5kw827DPLAdP0Ud0dKPGhyh4Ag6I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gl.zajmib3mxl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zajmib3mxl" + }, + { + "Name": "integrity", + "Value": "sha256-sy9h39A2klySwlDOUd2J57/uCErAiFqdCl8Qp+GHe6E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.dfhj8g7bzs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004310344828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfhj8g7bzs" + }, + { + "Name": "integrity", + "Value": "sha256-B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.dfhj8g7bzs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfhj8g7bzs" + }, + { + "Name": "integrity", + "Value": "sha256-B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.dfhj8g7bzs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfhj8g7bzs" + }, + { + "Name": "integrity", + "Value": "sha256-2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004310344828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B6kh7Jxq2SHS0JHmSpbz2FCie+6qyRTH7Lbyhp2YH8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2r+nNBXIyPHpW1PhMq36vbvmGXd07o2H4Cq/YVMay+c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.1bmf10ahub.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1bmf10ahub" + }, + { + "Name": "integrity", + "Value": "sha256-rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.1bmf10ahub.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1bmf10ahub" + }, + { + "Name": "integrity", + "Value": "sha256-rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.1bmf10ahub.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1bmf10ahub" + }, + { + "Name": "integrity", + "Value": "sha256-i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rZ8n0dXFm2sbNRjSkLUoGutXSRaMXhCbk7qChCNe/r4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i2pxJn+QIfBB2bgPWEO2su7+v+JN8FBAmmpnkWMiMc0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.9dxxwgk9d4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dxxwgk9d4" + }, + { + "Name": "integrity", + "Value": "sha256-LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.9dxxwgk9d4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dxxwgk9d4" + }, + { + "Name": "integrity", + "Value": "sha256-LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.9dxxwgk9d4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dxxwgk9d4" + }, + { + "Name": "integrity", + "Value": "sha256-Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQcxPo7M7CoapTbsnvEdMyv/oglZIhgGSdPs/ecqczs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gy0v1boDhzRCFapmVFlfpvQsP+KdTXj3prkCWePrFqo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444247001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.ypwqofabbd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444247001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypwqofabbd" + }, + { + "Name": "integrity", + "Value": "sha256-JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.ypwqofabbd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypwqofabbd" + }, + { + "Name": "integrity", + "Value": "sha256-JjyMZA0grm8vK9sbc/bhVdNGGD0VoV3K5FT6Xh2P60U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gq.ypwqofabbd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypwqofabbd" + }, + { + "Name": "integrity", + "Value": "sha256-PxGrD6WaBvv/UswulbnHh4UPZHPqFIJmeRUi/EKGmNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.wax4ryfjj5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wax4ryfjj5" + }, + { + "Name": "integrity", + "Value": "sha256-aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.wax4ryfjj5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wax4ryfjj5" + }, + { + "Name": "integrity", + "Value": "sha256-aAun1wGZU1+pZpp+/07MUU17Ik5Tq2/gMylvpBUi6Lk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gr.wax4ryfjj5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wax4ryfjj5" + }, + { + "Name": "integrity", + "Value": "sha256-mVilTSxd2XscLA40VCDPNZA8FHz37MBriPwwow6RDoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.abm9gyc7cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091768377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10896" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abm9gyc7cg" + }, + { + "Name": "integrity", + "Value": "sha256-ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.abm9gyc7cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abm9gyc7cg" + }, + { + "Name": "integrity", + "Value": "sha256-ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.abm9gyc7cg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10896" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abm9gyc7cg" + }, + { + "Name": "integrity", + "Value": "sha256-WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091768377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10896" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "35267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ys4wlp7MFNXXOHBa2OElbnEd0068Q+ihT/KYoMMa5GI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10896" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WoFcZMNrr6Zx90afsjDYowgZ4DkCMUtsQPPi5ZEgXFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.c7mk0wrmcc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074990626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7mk0wrmcc" + }, + { + "Name": "integrity", + "Value": "sha256-aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.c7mk0wrmcc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7mk0wrmcc" + }, + { + "Name": "integrity", + "Value": "sha256-aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.c7mk0wrmcc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7mk0wrmcc" + }, + { + "Name": "integrity", + "Value": "sha256-QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074990626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "37459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF1vh+j8edNJQ78qVwp/mGCgP9nPr99UB3il08AdLJI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QrarxJNqVzhe3HQw2lukKopAHIQNMRm1kOorsr1rswc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.e3r4ytf7qv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000604229607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1654" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e3r4ytf7qv" + }, + { + "Name": "integrity", + "Value": "sha256-KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.e3r4ytf7qv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e3r4ytf7qv" + }, + { + "Name": "integrity", + "Value": "sha256-KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.e3r4ytf7qv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1654" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e3r4ytf7qv" + }, + { + "Name": "integrity", + "Value": "sha256-JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000604229607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1654" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KgiLU7NCjxMBESNVfOxVMuN+u/9Hlti6bo8qNCf8+nM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1654" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JBRVCZLlaay7n8Mk2L+zgrdjizU2NnGDYJitZ2/C4ws=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.115k7u9uz2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "115k7u9uz2" + }, + { + "Name": "integrity", + "Value": "sha256-dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.115k7u9uz2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "904" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "115k7u9uz2" + }, + { + "Name": "integrity", + "Value": "sha256-dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.115k7u9uz2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "115k7u9uz2" + }, + { + "Name": "integrity", + "Value": "sha256-1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "904" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dQUfsbruCGZVfIRItWg3AoDn70pr8LjGM2feboZGWX0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1tOBms+dQ7z7ShE9394fXHWOc68rk62aK3fzEXWuewY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003436426117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.vs5eijr6kj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003436426117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs5eijr6kj" + }, + { + "Name": "integrity", + "Value": "sha256-38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.vs5eijr6kj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs5eijr6kj" + }, + { + "Name": "integrity", + "Value": "sha256-38LNFMq3/2IlKRt0jmVHbpR5/i35GUeJ36y5yBoHc5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/gy.vs5eijr6kj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "290" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs5eijr6kj" + }, + { + "Name": "integrity", + "Value": "sha256-aJm5uaCDgydPr4hjx/FwQjNyPFxwrYLF6UG8wxSYp7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/gy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.om9mlw0rl1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000763941940" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "om9mlw0rl1" + }, + { + "Name": "integrity", + "Value": "sha256-QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.om9mlw0rl1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "om9mlw0rl1" + }, + { + "Name": "integrity", + "Value": "sha256-QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.om9mlw0rl1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "om9mlw0rl1" + }, + { + "Name": "integrity", + "Value": "sha256-KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000763941940" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QE+IOH1pP2wjeJxERtLl0AIY1aBBYL+SAOTyLgUM9qk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KbLKuQFNVTp1UQASAlbYZQl49uqoq4SxeFsSWvO33/Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.499eqjfnax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "499eqjfnax" + }, + { + "Name": "integrity", + "Value": "sha256-qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.499eqjfnax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "499eqjfnax" + }, + { + "Name": "integrity", + "Value": "sha256-qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.499eqjfnax.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "499eqjfnax" + }, + { + "Name": "integrity", + "Value": "sha256-w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qKPZz6FFR1XdhJJkjxPAoB2mxlHnS0fbrAg1tc4Vy9A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w47WhSJHgn+RiHrSeZnB7lKXNk2yBb/V89kmV3zZn6M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.5jcow7venx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jcow7venx" + }, + { + "Name": "integrity", + "Value": "sha256-cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.5jcow7venx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jcow7venx" + }, + { + "Name": "integrity", + "Value": "sha256-cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.5jcow7venx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jcow7venx" + }, + { + "Name": "integrity", + "Value": "sha256-W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cWHFwk+GepsMBypv2AyuySIpIjYLrGsjHkU/71CmuQo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W8mjxi50XapSJGNm6S5x9Bt/+TaVfdUrIq1ysnbQk8c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.pz5ubt13qy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000061682704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz5ubt13qy" + }, + { + "Name": "integrity", + "Value": "sha256-KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.pz5ubt13qy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "40908" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz5ubt13qy" + }, + { + "Name": "integrity", + "Value": "sha256-KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.pz5ubt13qy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz5ubt13qy" + }, + { + "Name": "integrity", + "Value": "sha256-CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000061682704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "40908" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KzfQrxe4PwGdsE+9X4AUP/el/b/P8kmOjHiRym5WW2g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CGTOlcArDG6Et7A/vbTOz+VPZc7YUb+JjL3vBIOm4vc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.g8p0ct0gke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000184808723" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8p0ct0gke" + }, + { + "Name": "integrity", + "Value": "sha256-QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.g8p0ct0gke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8p0ct0gke" + }, + { + "Name": "integrity", + "Value": "sha256-QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.g8p0ct0gke.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8p0ct0gke" + }, + { + "Name": "integrity", + "Value": "sha256-IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000184808723" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QGCn2SOlE3fwjXNzacEOR46hOCXRb4wqr6GckCNFDIs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ht.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IvVOSZ0KcuF+ReD5UI7n+1i6JkXKShZEo91uS1lWp7E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.es4lu6h2nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es4lu6h2nu" + }, + { + "Name": "integrity", + "Value": "sha256-flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.es4lu6h2nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es4lu6h2nu" + }, + { + "Name": "integrity", + "Value": "sha256-flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.es4lu6h2nu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es4lu6h2nu" + }, + { + "Name": "integrity", + "Value": "sha256-FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-flGbKrmXr6koKRqMokeOQIJ/q6b/e8SCId0K+fSuQMY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/hu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FgBV64212xK4ZrLcwa5LRoG2FOs0ZHD8Ih4JWVWdeuo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.lo884oy4e0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo884oy4e0" + }, + { + "Name": "integrity", + "Value": "sha256-Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.lo884oy4e0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo884oy4e0" + }, + { + "Name": "integrity", + "Value": "sha256-Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.lo884oy4e0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo884oy4e0" + }, + { + "Name": "integrity", + "Value": "sha256-adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cx6t1bRPCkO6SYM9BC32n7/2NHZYyuc1fL6knzR1IeY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/id.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-adQC0HoLCudlavstnB5ZYxt1sptzVGt8hJObLB82Bns=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.shccssn5b9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shccssn5b9" + }, + { + "Name": "integrity", + "Value": "sha256-QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.shccssn5b9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shccssn5b9" + }, + { + "Name": "integrity", + "Value": "sha256-QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.shccssn5b9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shccssn5b9" + }, + { + "Name": "integrity", + "Value": "sha256-DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QAZBhgCrGqs2kLImy4/CcXklssHAsZOphJlViZEm4ys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ie.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DMktcgEJSY4SDbJxfYv5GGqNceFNBj6dtV4snpRaufY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.475oxpfkh3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002136752137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475oxpfkh3" + }, + { + "Name": "integrity", + "Value": "sha256-UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.475oxpfkh3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "862" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475oxpfkh3" + }, + { + "Name": "integrity", + "Value": "sha256-UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.475oxpfkh3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475oxpfkh3" + }, + { + "Name": "integrity", + "Value": "sha256-gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002136752137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "862" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UOVkyjgKXIxzQEc7yNG9h+D+M4AuUAFmM1mr9BymL8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/il.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gvZH0FJUdNKWYQdTH9bP49gm3u/idsZiXULq6bJuJys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000245639892" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.v11ioh4lc2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000245639892" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v11ioh4lc2" + }, + { + "Name": "integrity", + "Value": "sha256-01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.v11ioh4lc2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v11ioh4lc2" + }, + { + "Name": "integrity", + "Value": "sha256-01FE+QlpBt9RWrrZl0CMkXAG3nvOICBWUaRZo/SpgDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/im.v11ioh4lc2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v11ioh4lc2" + }, + { + "Name": "integrity", + "Value": "sha256-4VeRlkdxdfWZgxsCiTHM1Hz/CZIIGVHHgB7T9KC7rVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/im.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.97mz5mdxd1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002469135802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "404" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97mz5mdxd1" + }, + { + "Name": "integrity", + "Value": "sha256-JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.97mz5mdxd1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97mz5mdxd1" + }, + { + "Name": "integrity", + "Value": "sha256-JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.97mz5mdxd1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "404" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97mz5mdxd1" + }, + { + "Name": "integrity", + "Value": "sha256-fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002469135802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "404" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JaieJEkI9ioGGDNg8g58cF5zbrXoTpdxJnlEOQoFcVY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/in.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "404" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fNOaA+7swnPQyAJQ8+F4dpWLKQAF91VXYf+A1P7VpDc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.oyk0w9kxpc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000287604257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3476" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyk0w9kxpc" + }, + { + "Name": "integrity", + "Value": "sha256-IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.oyk0w9kxpc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyk0w9kxpc" + }, + { + "Name": "integrity", + "Value": "sha256-IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.oyk0w9kxpc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3476" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyk0w9kxpc" + }, + { + "Name": "integrity", + "Value": "sha256-ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000287604257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3476" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "27497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IM6gXoD3r9R1plmG3VMG4Kift5TPq+tutwWqyRBS0fU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/io.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3476" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZR+RquzPwqyQr0CfWQAX5F6nfwPwU/XJJ+DkZYaM/cM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.8o01ck91ih.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001264222503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8o01ck91ih" + }, + { + "Name": "integrity", + "Value": "sha256-qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.8o01ck91ih.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1485" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8o01ck91ih" + }, + { + "Name": "integrity", + "Value": "sha256-qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.8o01ck91ih.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8o01ck91ih" + }, + { + "Name": "integrity", + "Value": "sha256-xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001264222503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1485" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOW0rSmNOAFylDhj6UwrThDvKl4125sZ+q518yMuvbQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/iq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFFFtwYWvAtO8yo7Ie1uR3po/xnReu3nSWZ+AONAI3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.j9vuasd1kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000432713111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j9vuasd1kh" + }, + { + "Name": "integrity", + "Value": "sha256-x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.j9vuasd1kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j9vuasd1kh" + }, + { + "Name": "integrity", + "Value": "sha256-x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.j9vuasd1kh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j9vuasd1kh" + }, + { + "Name": "integrity", + "Value": "sha256-ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000432713111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x0N660JnU6ZJIVblxSx9bMyyYtwnqtBOir2U/MaKut0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ciWwAJa5oeUstsHtJ2uiHTxu4my5R4fhA7+/nEd3k3w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.il3jmwd069.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002898550725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "il3jmwd069" + }, + { + "Name": "integrity", + "Value": "sha256-CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.il3jmwd069.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "il3jmwd069" + }, + { + "Name": "integrity", + "Value": "sha256-CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.il3jmwd069.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "il3jmwd069" + }, + { + "Name": "integrity", + "Value": "sha256-Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002898550725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CkHM3uCZ9pjA00PYVA0E+397WgoEFkqUbY25R3Q5ygM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/is.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "344" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sdrp+L9pjZs/9Vp+m7ZF5mYRBMcDWOqrCLp3rY1r6Es=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.z9zci2r643.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zci2r643" + }, + { + "Name": "integrity", + "Value": "sha256-afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.z9zci2r643.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zci2r643" + }, + { + "Name": "integrity", + "Value": "sha256-afiXE8Jo742ONm5laMpKy4Es3N0+BJ18dSSV979ZIRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/it.z9zci2r643.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zci2r643" + }, + { + "Name": "integrity", + "Value": "sha256-+BKQ86UL3KIi6ZtrKhRIMq/144P+ib75s2Sl2nwusIE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/it.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.gz2cm7kfg7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000520833333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1919" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2cm7kfg7" + }, + { + "Name": "integrity", + "Value": "sha256-HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.gz2cm7kfg7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4707" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2cm7kfg7" + }, + { + "Name": "integrity", + "Value": "sha256-HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.gz2cm7kfg7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1919" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz2cm7kfg7" + }, + { + "Name": "integrity", + "Value": "sha256-qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000520833333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1919" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4707" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HOxlgxT6jXZHAYBCge2MDZLWgJKfg5uFcqTMepCE29A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/je.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1919" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qwZ8KOU0uXypZovTWSLCPViAtw9LPr2R7JmtEgtPAu8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004237288136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "397" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.va60i3gdml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004237288136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va60i3gdml" + }, + { + "Name": "integrity", + "Value": "sha256-GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.va60i3gdml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "397" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va60i3gdml" + }, + { + "Name": "integrity", + "Value": "sha256-GWK+cl6xdtD42snfq6/gKQMHotwZHBt82QJzlzX/+3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jm.va60i3gdml.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va60i3gdml" + }, + { + "Name": "integrity", + "Value": "sha256-8qtfhFHu31ULy3Hz8mRzRSfayacVgEMXxDj+Hbx2Hzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.7lpke6b7mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002577319588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7lpke6b7mc" + }, + { + "Name": "integrity", + "Value": "sha256-i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.7lpke6b7mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "707" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7lpke6b7mc" + }, + { + "Name": "integrity", + "Value": "sha256-i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.7lpke6b7mc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7lpke6b7mc" + }, + { + "Name": "integrity", + "Value": "sha256-AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002577319588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "707" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i9SkSeOo555RzL/mr3L2SniCPF6LM7jdcp7Z/EMUn3s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AakRh0h3kkrPgM8t8TXgSWHZfAXNAWaUnTzdseawzGw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.q12nrtkjp1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q12nrtkjp1" + }, + { + "Name": "integrity", + "Value": "sha256-4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.q12nrtkjp1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q12nrtkjp1" + }, + { + "Name": "integrity", + "Value": "sha256-4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.q12nrtkjp1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q12nrtkjp1" + }, + { + "Name": "integrity", + "Value": "sha256-44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4gYuC0jpVo2Q+2oRBcR9MJDy/dGBu9IKrbCrCTgx/Dc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/jp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-44YF+vgWzzOdPkn2fFKWo4HumaCTcrUAfPQ1ZxVf9Ps=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.pm6722ewki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001724137931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pm6722ewki" + }, + { + "Name": "integrity", + "Value": "sha256-r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.pm6722ewki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1508" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pm6722ewki" + }, + { + "Name": "integrity", + "Value": "sha256-r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.pm6722ewki.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pm6722ewki" + }, + { + "Name": "integrity", + "Value": "sha256-nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001724137931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1508" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r3i7b+//n5PFpqBdU8pfdUa/q/kW8e8hoKyij6HLnkg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ke.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nnHmyiOxR6oKkR955sn5ejP+/ONupyQglTnWQveH4L8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000632511069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3331" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.yv4sem8rtn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000632511069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv4sem8rtn" + }, + { + "Name": "integrity", + "Value": "sha256-vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.yv4sem8rtn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3331" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv4sem8rtn" + }, + { + "Name": "integrity", + "Value": "sha256-vi0n3zSNzX9cpr07xJp0WNXUgMCoHKLrMAiUFSeX2nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kg.yv4sem8rtn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv4sem8rtn" + }, + { + "Name": "integrity", + "Value": "sha256-31p55oGjMgLINx7/6nl9qh5AxSFC7SRYwX1F5xe3sQ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.sa4529qt63.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000357015352" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2800" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sa4529qt63" + }, + { + "Name": "integrity", + "Value": "sha256-/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.sa4529qt63.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sa4529qt63" + }, + { + "Name": "integrity", + "Value": "sha256-/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.sa4529qt63.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2800" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sa4529qt63" + }, + { + "Name": "integrity", + "Value": "sha256-Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000357015352" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2800" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/HTS1jEzYiWSSinbe4BoNI4Wt29eX0OfY5mtAOIEy2E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2800" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lqb2mk08FoREzZ21mLmDY/CLXep6MapY8a7Bo5G+Suw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.8toyl1z5wk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000551571980" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8toyl1z5wk" + }, + { + "Name": "integrity", + "Value": "sha256-5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.8toyl1z5wk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8toyl1z5wk" + }, + { + "Name": "integrity", + "Value": "sha256-5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.8toyl1z5wk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8toyl1z5wk" + }, + { + "Name": "integrity", + "Value": "sha256-OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000551571980" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5AQMaUJS+RemeZ/8yjv8HRi1tBOe9VndY2tE/LN1e7I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ki.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OO02GrYicn82/E4Yhn65AqNMwDGbQCqvbK0fAwMstPY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.7zbu2lmitz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002164502165" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7zbu2lmitz" + }, + { + "Name": "integrity", + "Value": "sha256-3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.7zbu2lmitz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1053" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7zbu2lmitz" + }, + { + "Name": "integrity", + "Value": "sha256-3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.7zbu2lmitz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7zbu2lmitz" + }, + { + "Name": "integrity", + "Value": "sha256-PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002164502165" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1053" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3dECJy8nARSRAghp7gDMWweeDm/mJcleFiATk6lsPNI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/km.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PF8BlTgW97P2vrL0bXsRbBh4mWD9fYzX5il3eCwamiY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.kdo3cw8znr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002159827214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdo3cw8znr" + }, + { + "Name": "integrity", + "Value": "sha256-2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.kdo3cw8znr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdo3cw8znr" + }, + { + "Name": "integrity", + "Value": "sha256-2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.kdo3cw8znr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kdo3cw8znr" + }, + { + "Name": "integrity", + "Value": "sha256-67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002159827214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "831" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BV31169eEWu1qOks7//tpgxcnJnfp5vtrTWbyGxRS0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-67w2MuwcDDm2oPVGNosI+JM4V5m7JwwJ7d7nI6luWJo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.6e978ojqzv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002183406114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "457" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6e978ojqzv" + }, + { + "Name": "integrity", + "Value": "sha256-srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.6e978ojqzv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6e978ojqzv" + }, + { + "Name": "integrity", + "Value": "sha256-srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.6e978ojqzv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "457" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6e978ojqzv" + }, + { + "Name": "integrity", + "Value": "sha256-h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002183406114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "457" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "867" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-srwuJh/j5QvEAGyK7pHYkIbMtU7FpL1qGBBrvfQw4z0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "457" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h/pew1AGdhjxQvf0dN46/MAzmENv22qbNTdQF4D0tWE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.jfe74kszes.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfe74kszes" + }, + { + "Name": "integrity", + "Value": "sha256-Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.jfe74kszes.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfe74kszes" + }, + { + "Name": "integrity", + "Value": "sha256-Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.jfe74kszes.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfe74kszes" + }, + { + "Name": "integrity", + "Value": "sha256-R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Meeo2QKPHhqvB3YTjub9pm6uvH9HOgsf+xou3eklYa8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R3WxempYSOGVRWgsEY5R4HwZhcnWPEj4UGyCbUhQJUE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.g0u7lc1flq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003267973856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "305" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0u7lc1flq" + }, + { + "Name": "integrity", + "Value": "sha256-sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.g0u7lc1flq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "520" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0u7lc1flq" + }, + { + "Name": "integrity", + "Value": "sha256-sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.g0u7lc1flq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "305" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0u7lc1flq" + }, + { + "Name": "integrity", + "Value": "sha256-3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003267973856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "305" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "520" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sEiRwDnBHFwG+xQBOlv4qc8L8rqzA4iil2jV1nr3yDI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "305" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Ns6YDpkzaMjiq4A+8OsY/QoXzeKcfOZ8+7DEYuYmTI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000121315055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "22427" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.uyuno3r9b8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000121315055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyuno3r9b8" + }, + { + "Name": "integrity", + "Value": "sha256-hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.uyuno3r9b8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22427" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyuno3r9b8" + }, + { + "Name": "integrity", + "Value": "sha256-hvB5E6INrBFAmyCltLXbDrJ/byqVPCBjPf1G3C/yZi8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ky.uyuno3r9b8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyuno3r9b8" + }, + { + "Name": "integrity", + "Value": "sha256-NndJMgGgAmywNCIDMPKo+JcJ4M1tJb0zEdSAQSnZRYs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ky.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.r2eg9965iz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000226705962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r2eg9965iz" + }, + { + "Name": "integrity", + "Value": "sha256-Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.r2eg9965iz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11438" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r2eg9965iz" + }, + { + "Name": "integrity", + "Value": "sha256-Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.r2eg9965iz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r2eg9965iz" + }, + { + "Name": "integrity", + "Value": "sha256-5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000226705962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11438" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q7hhYnRubuh+I+/jrBKQwXRt4Jmivf8uuFEX5hPlflU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/kz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4410" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5UiH0BBWZPE9/Kpp8+JfwCOnLz0MNHG0CuU+GSSPn/4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.lbpzv6rwga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbpzv6rwga" + }, + { + "Name": "integrity", + "Value": "sha256-D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.lbpzv6rwga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbpzv6rwga" + }, + { + "Name": "integrity", + "Value": "sha256-D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.lbpzv6rwga.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbpzv6rwga" + }, + { + "Name": "integrity", + "Value": "sha256-rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D45VPXJI6iLbI0tbWd/iHbfixNCDN+x8fggVuNt8mns=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/la.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rX9DeXdILFKU5K8YsqilnrHno/Tv7d66/YIpUT1Omlw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.255sb1opub.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000747384155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "255sb1opub" + }, + { + "Name": "integrity", + "Value": "sha256-+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.255sb1opub.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "255sb1opub" + }, + { + "Name": "integrity", + "Value": "sha256-+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.255sb1opub.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "255sb1opub" + }, + { + "Name": "integrity", + "Value": "sha256-SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000747384155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qfPDxW+DjHr5Ap0Ci4h66/5viRJPLDBa+yOdnqpSjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SR20oW2pf4HQWRTyeOKXsl7nyLXGucXTHFAZGp8cLVc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.37enrekawx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "37enrekawx" + }, + { + "Name": "integrity", + "Value": "sha256-YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.37enrekawx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "37enrekawx" + }, + { + "Name": "integrity", + "Value": "sha256-YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.37enrekawx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "37enrekawx" + }, + { + "Name": "integrity", + "Value": "sha256-M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YaW2TLg1iXr7wmLscBRsB58IsBMsXWCaM5xSkFIj0OA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M82hGsxUrjjWaUbcgSI8p1f9ZRp3l6uEGhXPkWVpDds=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.i57cg8xjf4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000301386377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i57cg8xjf4" + }, + { + "Name": "integrity", + "Value": "sha256-Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.i57cg8xjf4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i57cg8xjf4" + }, + { + "Name": "integrity", + "Value": "sha256-Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.i57cg8xjf4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i57cg8xjf4" + }, + { + "Name": "integrity", + "Value": "sha256-yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000301386377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nq+Gy0P9yKRJwO/ydFyDNsG72KpUzWyTy4JkZ8yrSGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/li.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3317" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yYXF6qkJZ8B1sV1I8mi3QAxWqeXCsK0XLP/4RLkvEFU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.2kz6abhgte.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214592275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kz6abhgte" + }, + { + "Name": "integrity", + "Value": "sha256-fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.2kz6abhgte.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11276" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kz6abhgte" + }, + { + "Name": "integrity", + "Value": "sha256-fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.2kz6abhgte.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2kz6abhgte" + }, + { + "Name": "integrity", + "Value": "sha256-3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214592275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11276" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fqDs+ok0M46cgjHA9ifFiMtoKn7/vJNg0rImKkTzwFw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3t7joXromE4weAliMuoV+nMqQfWJKhkmePHHZYt7XlI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002747252747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.zez5v2p8yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002747252747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zez5v2p8yt" + }, + { + "Name": "integrity", + "Value": "sha256-i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.zez5v2p8yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zez5v2p8yt" + }, + { + "Name": "integrity", + "Value": "sha256-i5nEQum4vzwE1nrmT5ihIAKIrc5gDq9FAYgqZqFkvtc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lr.zez5v2p8yt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zez5v2p8yt" + }, + { + "Name": "integrity", + "Value": "sha256-c6VKmQnIVh2p6y93XYHvFeCAo0mHVH+BqO9buSeX3LI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.1y3n566yqm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y3n566yqm" + }, + { + "Name": "integrity", + "Value": "sha256-R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.1y3n566yqm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y3n566yqm" + }, + { + "Name": "integrity", + "Value": "sha256-R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.1y3n566yqm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1y3n566yqm" + }, + { + "Name": "integrity", + "Value": "sha256-pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1250" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R69uQYsC1DX3KMQsywzJIPKNk/X0Jtnnvxzh39anwI4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pk+sm9WDw4AdfVl8IZqkLVjdMeg8gkZdOKVDu0CYKHY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.eufhk5i45f.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eufhk5i45f" + }, + { + "Name": "integrity", + "Value": "sha256-dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.eufhk5i45f.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eufhk5i45f" + }, + { + "Name": "integrity", + "Value": "sha256-dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.eufhk5i45f.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eufhk5i45f" + }, + { + "Name": "integrity", + "Value": "sha256-ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dlJbe5rGS/U7zTsBhRt7pOzmybt6HQu/oI6H3JUi3ZU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ANDrT07ODQO8qcXkTTDebDtMqYjRCi9Ltht/YASLINI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.7f2hioz5ko.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005780346821" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "172" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f2hioz5ko" + }, + { + "Name": "integrity", + "Value": "sha256-fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.7f2hioz5ko.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f2hioz5ko" + }, + { + "Name": "integrity", + "Value": "sha256-fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.7f2hioz5ko.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "172" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f2hioz5ko" + }, + { + "Name": "integrity", + "Value": "sha256-/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005780346821" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "172" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fbccXzbF/YfNZqmXsxJCZhshd8CASOb+FFmk/av8dCY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "172" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/6pyp7X3vGMXMRfCbhX1D1Swuv81nyRfalZUxbLq240=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.y5icjz2p24.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5icjz2p24" + }, + { + "Name": "integrity", + "Value": "sha256-CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.y5icjz2p24.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5icjz2p24" + }, + { + "Name": "integrity", + "Value": "sha256-CloHqfqTnuqrzLO3db3+v7A4glMxQTaCfm8pAUojGCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/lv.y5icjz2p24.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y5icjz2p24" + }, + { + "Name": "integrity", + "Value": "sha256-gbUxx/Tzwivw7rMvl3XadQ7HK8ZfqEtRHtYCd/2s0RM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/lv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.64jodg35mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003115264798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64jodg35mm" + }, + { + "Name": "integrity", + "Value": "sha256-OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.64jodg35mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64jodg35mm" + }, + { + "Name": "integrity", + "Value": "sha256-OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.64jodg35mm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64jodg35mm" + }, + { + "Name": "integrity", + "Value": "sha256-FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003115264798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OqyU5PMxgMmXfXyiYiJNvoQBtgaVVZRnyRN1bm7hIRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ly.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FRki7yMB8iGbbvB8/PUUCwnhUxmt5+6FJAgPZLxH1j0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.mepah5t7m0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mepah5t7m0" + }, + { + "Name": "integrity", + "Value": "sha256-4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.mepah5t7m0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mepah5t7m0" + }, + { + "Name": "integrity", + "Value": "sha256-4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.mepah5t7m0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mepah5t7m0" + }, + { + "Name": "integrity", + "Value": "sha256-6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4uvgMG5nLsWwB5qt0gybWz2GpBsqYTkOv8uI4SIbh7Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ma.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6X65rOJCuOCTY7N1pe//cNpFDSvdLn6bJXfPb8qnJ+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.jd9a5p374i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jd9a5p374i" + }, + { + "Name": "integrity", + "Value": "sha256-92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.jd9a5p374i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jd9a5p374i" + }, + { + "Name": "integrity", + "Value": "sha256-92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.jd9a5p374i.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jd9a5p374i" + }, + { + "Name": "integrity", + "Value": "sha256-Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-92buqDe3xTZf6hjFtAA/gRe1S+Kpcs4lZa0ZHxT0R6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zaagq6f7b+DSprrZSc7KhCNvQ778MEGfWaWcIrXKhSM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000358808755" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2786" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2786" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.w8pkoz4wqk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000358808755" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2786" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w8pkoz4wqk" + }, + { + "Name": "integrity", + "Value": "sha256-0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.w8pkoz4wqk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w8pkoz4wqk" + }, + { + "Name": "integrity", + "Value": "sha256-0ICI7Vu5cyYZs3BKiZhg9uk1FVxHiMl3tXV28jHB+sM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/md.w8pkoz4wqk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2786" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w8pkoz4wqk" + }, + { + "Name": "integrity", + "Value": "sha256-IGsjZI+o78tWsf0HztoHl4muHAYSEJ4xWGVzeEAMGt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/md.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.8cmsiu1h2n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041827004" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23907" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cmsiu1h2n" + }, + { + "Name": "integrity", + "Value": "sha256-6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.8cmsiu1h2n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "63472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cmsiu1h2n" + }, + { + "Name": "integrity", + "Value": "sha256-6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.8cmsiu1h2n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23907" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cmsiu1h2n" + }, + { + "Name": "integrity", + "Value": "sha256-CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041827004" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23907" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "63472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6MU/1sDOzKOp6F3eZoLfOf6nsZgvqzIxc5Qpp8eKDdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/me.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23907" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CYvftDCyvBnpFhbeYgK/91zErimVYEF9YjMPr3qZA9s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.azosfuphf7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azosfuphf7" + }, + { + "Name": "integrity", + "Value": "sha256-duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.azosfuphf7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azosfuphf7" + }, + { + "Name": "integrity", + "Value": "sha256-duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.azosfuphf7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azosfuphf7" + }, + { + "Name": "integrity", + "Value": "sha256-Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-duRZMfYb9SFSsvhYkTjVMpIcRsgEhq5mGgD7BTxRA8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fo76sCipiPl3Avglj64Iois7gFRmrY628uITGK25BtY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.fw956rfjow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw956rfjow" + }, + { + "Name": "integrity", + "Value": "sha256-X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.fw956rfjow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw956rfjow" + }, + { + "Name": "integrity", + "Value": "sha256-X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.fw956rfjow.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fw956rfjow" + }, + { + "Name": "integrity", + "Value": "sha256-3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4N1hA+4q7oK90sNkBqEqJa9u7AACdEDaShxLDuvMys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3uGEa9yLju0+Nj/fHAGSWS6BYa1TokTKmFDw/mzl5m8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.49qeknhy7x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002188183807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49qeknhy7x" + }, + { + "Name": "integrity", + "Value": "sha256-aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.49qeknhy7x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49qeknhy7x" + }, + { + "Name": "integrity", + "Value": "sha256-aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.49qeknhy7x.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49qeknhy7x" + }, + { + "Name": "integrity", + "Value": "sha256-+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002188183807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aFwft7q5cHVTsXKeLvwqc6dXuKlpYp1AyrEzymMt3tE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+vPgvAKldrFcpTqT22k4qVPkKi4UDxR3lRf1toVVTBQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003731343284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.tsclsowo1x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003731343284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsclsowo1x" + }, + { + "Name": "integrity", + "Value": "sha256-88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.tsclsowo1x.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsclsowo1x" + }, + { + "Name": "integrity", + "Value": "sha256-88+2udlju9y1QMLmtKfzCNFN4DAkabTeh9/oo2vhfm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mk.tsclsowo1x.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsclsowo1x" + }, + { + "Name": "integrity", + "Value": "sha256-XSrKUPHS9e0BBm79U8EUHmCKFIN6UNMrm5EywfmprZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.ho8zr0sr7u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ho8zr0sr7u" + }, + { + "Name": "integrity", + "Value": "sha256-sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.ho8zr0sr7u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "286" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ho8zr0sr7u" + }, + { + "Name": "integrity", + "Value": "sha256-sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.ho8zr0sr7u.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ho8zr0sr7u" + }, + { + "Name": "integrity", + "Value": "sha256-2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "286" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sZEyQ1C0YTtWSRrA9J2l3rYoYbjUe4Ng1gxjQyty0yU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ml.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2zGFuiCyL1FstHI0rMJVAVbfDldut6tgzoQ+9tOSLKo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.1vaq6136kd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vaq6136kd" + }, + { + "Name": "integrity", + "Value": "sha256-fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.1vaq6136kd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vaq6136kd" + }, + { + "Name": "integrity", + "Value": "sha256-fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.1vaq6136kd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1vaq6136kd" + }, + { + "Name": "integrity", + "Value": "sha256-zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fdMh8F5q2ag6SGO5+toGaAaJtkVyC1EN8R/FDkQSg7E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zwm+kDeAhTq+HEzhbnK/nctNXyZcK4MeWnRe1/4GhQ0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.d8i673db7t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001855287570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8i673db7t" + }, + { + "Name": "integrity", + "Value": "sha256-M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.d8i673db7t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8i673db7t" + }, + { + "Name": "integrity", + "Value": "sha256-M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.d8i673db7t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8i673db7t" + }, + { + "Name": "integrity", + "Value": "sha256-FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001855287570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M3s8PhctB57R+e1KR7RYAxV843zhCvAu2zK31D9hUx4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FDQwyBhIlpywd99F/w5GlrGXTaa/tju07kUlS15ed8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.nktjcaq27e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001319261214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nktjcaq27e" + }, + { + "Name": "integrity", + "Value": "sha256-ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.nktjcaq27e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nktjcaq27e" + }, + { + "Name": "integrity", + "Value": "sha256-ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.nktjcaq27e.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nktjcaq27e" + }, + { + "Name": "integrity", + "Value": "sha256-zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001319261214" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ic/A5TymxmmUbI1ndtryOv24yOWghBf7Nb5TD/OzpAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "757" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zI+G4Iv6Z5D57sITcvHt3Xq9OE3vEThsvbaWLCoFK1E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.fs6qhzzf7y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000135317997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fs6qhzzf7y" + }, + { + "Name": "integrity", + "Value": "sha256-37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.fs6qhzzf7y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "23714" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fs6qhzzf7y" + }, + { + "Name": "integrity", + "Value": "sha256-37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.fs6qhzzf7y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fs6qhzzf7y" + }, + { + "Name": "integrity", + "Value": "sha256-Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000135317997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "23714" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-37G+M63X4acQnxe6bV6J6tShlXh/Dl/TL3gcZZyZQy0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q9vZO2GlPe2fHDNvGXfwXpbOU+Z1mQFDrG46V19WmLY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.ml5zq05c6z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ml5zq05c6z" + }, + { + "Name": "integrity", + "Value": "sha256-5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.ml5zq05c6z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ml5zq05c6z" + }, + { + "Name": "integrity", + "Value": "sha256-5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.ml5zq05c6z.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ml5zq05c6z" + }, + { + "Name": "integrity", + "Value": "sha256-7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5k60LQy8k7z8qJWSmrKpqPWi5a8czd9JKYyFRaOmMCM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7+wlyAazvwRfSruwmPg+rZrCfCKrKvP1QCiWgNC1Jck=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.34d4dzxx5s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34d4dzxx5s" + }, + { + "Name": "integrity", + "Value": "sha256-YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.34d4dzxx5s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34d4dzxx5s" + }, + { + "Name": "integrity", + "Value": "sha256-YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.34d4dzxx5s.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34d4dzxx5s" + }, + { + "Name": "integrity", + "Value": "sha256-gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YwTR/pljK8J2j/+SvDRUgRvw19i6yemA3j5FJiHIu1I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gge8hTM4PBy5EBAp6GYxoiqhVKYBs9xxfHolLfuI7ls=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.6qtva9k9l9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324044070" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3085" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qtva9k9l9" + }, + { + "Name": "integrity", + "Value": "sha256-PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.6qtva9k9l9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qtva9k9l9" + }, + { + "Name": "integrity", + "Value": "sha256-PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.6qtva9k9l9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3085" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qtva9k9l9" + }, + { + "Name": "integrity", + "Value": "sha256-ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324044070" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3085" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "12210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PjZNsy3jpsFH8JQyT6195GEtB4NeX0ORuxJDNTw2Q8A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ms.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3085" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ME3usgrHiZ4TV14XS1CR6KKbQ3tYzKlZkQRRwR0FhV8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000262812089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3804" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3804" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.zhcoinjr9d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000262812089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3804" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhcoinjr9d" + }, + { + "Name": "integrity", + "Value": "sha256-uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.zhcoinjr9d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhcoinjr9d" + }, + { + "Name": "integrity", + "Value": "sha256-uaygea4PPBC/pFFPSUA5oSaONMwgTUuqeXkaLrDgoZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mt.zhcoinjr9d.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3804" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhcoinjr9d" + }, + { + "Name": "integrity", + "Value": "sha256-7EdBlwJMI/vkiENctlblmCo13vUp22lVQbOa432PKq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.r1g0bnmdlp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1g0bnmdlp" + }, + { + "Name": "integrity", + "Value": "sha256-wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.r1g0bnmdlp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1g0bnmdlp" + }, + { + "Name": "integrity", + "Value": "sha256-wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.r1g0bnmdlp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r1g0bnmdlp" + }, + { + "Name": "integrity", + "Value": "sha256-6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wWejmSzlPRHlivdGfaxKmomTpz0kCVJ3ZqibZVBTGJ4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6drOdDq0k4a+D8k78ueWLvWXzfACc6n/xVscmTO47Nc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.c7st5thhwk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004484304933" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7st5thhwk" + }, + { + "Name": "integrity", + "Value": "sha256-CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.c7st5thhwk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7st5thhwk" + }, + { + "Name": "integrity", + "Value": "sha256-CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.c7st5thhwk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7st5thhwk" + }, + { + "Name": "integrity", + "Value": "sha256-Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004484304933" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CD3MQ8m/HmRlODT+MBQ8h1duKtAhLngqJ6liyQrgrjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "222" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cfn2PN/2+n6nuZJuepS5WkqLk1+zxSYJYWds4i0pxVQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.ra5ksjw333.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000567536890" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5ksjw333" + }, + { + "Name": "integrity", + "Value": "sha256-09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.ra5ksjw333.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5ksjw333" + }, + { + "Name": "integrity", + "Value": "sha256-09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.ra5ksjw333.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ra5ksjw333" + }, + { + "Name": "integrity", + "Value": "sha256-4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000567536890" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09+RWjnN0kpykp/4cJ2F2GYBdG1rzcHdS6CS+Dd331E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Na4rB9yWEag9uPqQ4H+NTx2j15DvWVVG3M2kNKqONg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.bet10w9edh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031823823" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bet10w9edh" + }, + { + "Name": "integrity", + "Value": "sha256-E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.bet10w9edh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "90883" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bet10w9edh" + }, + { + "Name": "integrity", + "Value": "sha256-E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.bet10w9edh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bet10w9edh" + }, + { + "Name": "integrity", + "Value": "sha256-YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031823823" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "90883" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E9t1cppVNt9Y+8+G+mnbX5SOylMwZR/aoeQtZpq5EOU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YMGJjrE6CdpSUiSjFqFVZQRxPkjUVUlZrk1cQHV/pbU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.mbgmllq8bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001980198020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mbgmllq8bd" + }, + { + "Name": "integrity", + "Value": "sha256-IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.mbgmllq8bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mbgmllq8bd" + }, + { + "Name": "integrity", + "Value": "sha256-IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.mbgmllq8bd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mbgmllq8bd" + }, + { + "Name": "integrity", + "Value": "sha256-sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001980198020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IkVCN9odczVS0MiS3W9HETDMx7U6r3ZQmGND7T9yIhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/my.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sf/fsjorz+mgjjjz8b+OVfU1zDiRm3pcY9JC1O73wQs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.s12c5mshwz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000942507069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s12c5mshwz" + }, + { + "Name": "integrity", + "Value": "sha256-oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.s12c5mshwz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2618" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s12c5mshwz" + }, + { + "Name": "integrity", + "Value": "sha256-oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.s12c5mshwz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s12c5mshwz" + }, + { + "Name": "integrity", + "Value": "sha256-PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000942507069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2618" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oC2pU3HCFlKkbCY2jS0Hpyy7mOX7H/+cQFUQUibFBxo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/mz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1060" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PLpaWyUA0+hhkNq9QzrVfKZundW5UaLYqxiK0BtfRfc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.znaybnjkl2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znaybnjkl2" + }, + { + "Name": "integrity", + "Value": "sha256-f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.znaybnjkl2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znaybnjkl2" + }, + { + "Name": "integrity", + "Value": "sha256-f0GPTuSGJSpy6rgIgLPTpvMPunp/fPE4hm05mX5QcAg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/na.znaybnjkl2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znaybnjkl2" + }, + { + "Name": "integrity", + "Value": "sha256-BdbNP9FLl89qAuQbk8E15qbpqvl9OUdRbsGKH30PynE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/na.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.bgbwz7ecpa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001519756839" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "657" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgbwz7ecpa" + }, + { + "Name": "integrity", + "Value": "sha256-+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.bgbwz7ecpa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgbwz7ecpa" + }, + { + "Name": "integrity", + "Value": "sha256-+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.bgbwz7ecpa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "657" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgbwz7ecpa" + }, + { + "Name": "integrity", + "Value": "sha256-FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001519756839" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "657" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+2Bhb4zrA80ZaXgA4tuJ5GyF5mswUpk+B5Y4twz5i/U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "657" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FcoZIxWf6oJHgWsEFGxjC1M3/7iiVbhcuVBO0fmy5UE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.q6p9uucaxt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005181347150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6p9uucaxt" + }, + { + "Name": "integrity", + "Value": "sha256-PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.q6p9uucaxt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "288" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6p9uucaxt" + }, + { + "Name": "integrity", + "Value": "sha256-PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.q6p9uucaxt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q6p9uucaxt" + }, + { + "Name": "integrity", + "Value": "sha256-syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005181347150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "288" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PsJQ7D9Fb1XvphKHF/inVljaiqsO3mX7r5Lc+DCGOs4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ne.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-syAUlECGTf7PkJLdm5I885kIDeJYUPZDIfCpdKosSO8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000402414487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5602" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.uar8rcw0z4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000402414487" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uar8rcw0z4" + }, + { + "Name": "integrity", + "Value": "sha256-NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.uar8rcw0z4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5602" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uar8rcw0z4" + }, + { + "Name": "integrity", + "Value": "sha256-NufuoQ4l8kdiJZ3YT4GUGUMampZAJzBJGXG6DVuessU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nf.uar8rcw0z4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uar8rcw0z4" + }, + { + "Name": "integrity", + "Value": "sha256-NqVNVOjj8/d2oKsu3pUaZTj2fPtxZ58lF/iX9/WGiv4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.dzufxv4lcz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004854368932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzufxv4lcz" + }, + { + "Name": "integrity", + "Value": "sha256-Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.dzufxv4lcz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzufxv4lcz" + }, + { + "Name": "integrity", + "Value": "sha256-Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.dzufxv4lcz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzufxv4lcz" + }, + { + "Name": "integrity", + "Value": "sha256-n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004854368932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z5jdmkGKc+CLrmg+8m8RaXOyqvhVHsmLLgpFiEsmRqU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n7apwk9oCgMmE3YdBxYIf2HppDypYvsoImIL5SjIjRo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166861338" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5992" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18592" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5992" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.zpsrf9d8vs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166861338" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5992" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zpsrf9d8vs" + }, + { + "Name": "integrity", + "Value": "sha256-J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.zpsrf9d8vs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18592" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zpsrf9d8vs" + }, + { + "Name": "integrity", + "Value": "sha256-J81IH3f8aJcH+pXXCHdv2bwkRE7q1bIHorPvJ+g3LmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ni.zpsrf9d8vs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5992" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zpsrf9d8vs" + }, + { + "Name": "integrity", + "Value": "sha256-tjfHBF9W5G2cBn/zne4eP/s1WJ+gVgaLO7QuPx8UqTA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ni.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.500c6k0n07.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "500c6k0n07" + }, + { + "Name": "integrity", + "Value": "sha256-+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.500c6k0n07.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "500c6k0n07" + }, + { + "Name": "integrity", + "Value": "sha256-+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.500c6k0n07.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "500c6k0n07" + }, + { + "Name": "integrity", + "Value": "sha256-C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005847953216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+x41L7LxnnyoO9z0G/WQFh828XjtC8o5CEtEqVjQe20=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C7xaKRvXH4TC0iqt9x3O13Pn5uwCfmryOszgLBWIW/8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.c6ukfseamh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005076142132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6ukfseamh" + }, + { + "Name": "integrity", + "Value": "sha256-PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.c6ukfseamh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6ukfseamh" + }, + { + "Name": "integrity", + "Value": "sha256-PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.c6ukfseamh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c6ukfseamh" + }, + { + "Name": "integrity", + "Value": "sha256-M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005076142132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PGvLd/ITcomtqX54iuJ6VaDBYDMgUOpvOYzdhgj5eIw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/no.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M0EvpwNXm/KHx5wbtPkgmJMXM0vTds1P3UJ1rao6dQk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.occkipe36n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001597444089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "occkipe36n" + }, + { + "Name": "integrity", + "Value": "sha256-eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.occkipe36n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "occkipe36n" + }, + { + "Name": "integrity", + "Value": "sha256-eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.occkipe36n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "occkipe36n" + }, + { + "Name": "integrity", + "Value": "sha256-YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001597444089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eI5K1L2k2Yu7laF8jdQ5OXQG8CPSwfNk+Z6/xY/f5Go=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/np.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YeTaAjdNi+cau3nX92BAseSAijiNFJJWPZiPHcGz3WQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.d0hbdhmgx7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002475247525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0hbdhmgx7" + }, + { + "Name": "integrity", + "Value": "sha256-I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.d0hbdhmgx7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "680" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0hbdhmgx7" + }, + { + "Name": "integrity", + "Value": "sha256-I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.d0hbdhmgx7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0hbdhmgx7" + }, + { + "Name": "integrity", + "Value": "sha256-W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002475247525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "680" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I2TpEjz1QpfWHLvu1l6dMtijNxfqwCwhhQEJoD9TqXg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W5h/gGdvFYh69HNCExwFXg+JdkZ4lqULqoigIyHI7x4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.fac9biq3d4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001267427123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fac9biq3d4" + }, + { + "Name": "integrity", + "Value": "sha256-iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.fac9biq3d4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1753" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fac9biq3d4" + }, + { + "Name": "integrity", + "Value": "sha256-iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.fac9biq3d4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fac9biq3d4" + }, + { + "Name": "integrity", + "Value": "sha256-GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001267427123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1753" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iYZg6gGbn9eaU9G1emr0/rVH1aue+ogduHgVI413/W4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GPMnONZG5jhlrHAV9cK/gfyaTPl0c4gKAkMdvw73o4A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.3u9k60mdyo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001168224299" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3u9k60mdyo" + }, + { + "Name": "integrity", + "Value": "sha256-NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.3u9k60mdyo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3040" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3u9k60mdyo" + }, + { + "Name": "integrity", + "Value": "sha256-NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.3u9k60mdyo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3u9k60mdyo" + }, + { + "Name": "integrity", + "Value": "sha256-8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001168224299" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3040" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NSsB3cZwrUaQIn4LupdBWQes0CKujqoSeipf6m9+wb4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/nz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "855" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8jh1Z/Gc5ZN3g/dYA7mUpim2SrXsJIq2ojO5lGGU3EQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222024867" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "22729" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.vz9weggzoa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222024867" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vz9weggzoa" + }, + { + "Name": "integrity", + "Value": "sha256-m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.vz9weggzoa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22729" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vz9weggzoa" + }, + { + "Name": "integrity", + "Value": "sha256-m8g7bsJY36tAisRqODiTi8c5GNM1tn12lqGcX9ozpyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/om.vz9weggzoa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vz9weggzoa" + }, + { + "Name": "integrity", + "Value": "sha256-LsaTA1N5QSUBk9QvLlLKTTG0uV/NErK160r1rIQjuYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/om.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.o492cmcnhb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o492cmcnhb" + }, + { + "Name": "integrity", + "Value": "sha256-uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.o492cmcnhb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o492cmcnhb" + }, + { + "Name": "integrity", + "Value": "sha256-uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.o492cmcnhb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o492cmcnhb" + }, + { + "Name": "integrity", + "Value": "sha256-kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uL6YnI1g3UQxtgDUdY9X8J0qc1If+W2DYJ74OJPiGVw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kUVp61j9ihDIToMDXZdpP2T1v3qsu32UoJHgOTzKu0E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.6v2ate50r9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000039343746" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25416" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v2ate50r9" + }, + { + "Name": "integrity", + "Value": "sha256-/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.6v2ate50r9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "73151" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v2ate50r9" + }, + { + "Name": "integrity", + "Value": "sha256-/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.6v2ate50r9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25416" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v2ate50r9" + }, + { + "Name": "integrity", + "Value": "sha256-/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000039343746" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25416" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "73151" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/k1iiTrIaU6ntMvtf3og2tuGMHNtekc573UEsa8RSS4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pe.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25416" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/qYJ8gQjzzgAzzzmfEHIhAtz4qK3LbWKf9qnlRDMtyU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.pzlcxj6ixx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000551876380" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1811" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzlcxj6ixx" + }, + { + "Name": "integrity", + "Value": "sha256-VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.pzlcxj6ixx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzlcxj6ixx" + }, + { + "Name": "integrity", + "Value": "sha256-VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.pzlcxj6ixx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1811" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzlcxj6ixx" + }, + { + "Name": "integrity", + "Value": "sha256-/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000551876380" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1811" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VcdQO+WAl8khVszi6ZvOSggLYeJtkP7MMZIR2hAZd5k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1811" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/lk6EV9NUu7kKKad6rakBPXOXQhOyLI64nCtI/gMdw0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.ab5cqhxhza.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000963391137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1037" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab5cqhxhza" + }, + { + "Name": "integrity", + "Value": "sha256-5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.ab5cqhxhza.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2111" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab5cqhxhza" + }, + { + "Name": "integrity", + "Value": "sha256-5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.ab5cqhxhza.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1037" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab5cqhxhza" + }, + { + "Name": "integrity", + "Value": "sha256-58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000963391137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1037" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2111" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5jPWSJxHGclAnwprshVAOHjAJS3RJe4E1SyvGgCnKE8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1037" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-58rx9nbOkGofvhkijcoZQYytXtw2yUBubtDsiBxUFQ0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.efwqjux015.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001406469761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efwqjux015" + }, + { + "Name": "integrity", + "Value": "sha256-qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.efwqjux015.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1519" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efwqjux015" + }, + { + "Name": "integrity", + "Value": "sha256-qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.efwqjux015.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efwqjux015" + }, + { + "Name": "integrity", + "Value": "sha256-4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001406469761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1519" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qmGfY4cpk7kHx58BshvaIRUTGrJSnU52Niu9iG+8zQI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ph.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4vnyy5glh4RubqE3VwyHwMJg4c9lOuHkxsP8GntU8Xs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.5abnvdgzkh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5abnvdgzkh" + }, + { + "Name": "integrity", + "Value": "sha256-I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.5abnvdgzkh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5abnvdgzkh" + }, + { + "Name": "integrity", + "Value": "sha256-I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.5abnvdgzkh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5abnvdgzkh" + }, + { + "Name": "integrity", + "Value": "sha256-4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I9RuxivPkdnggfhs3YRq2U7ZNpELQf4LiZ3aLQnJehI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4I4mfYRw4PGtsW27zSo8mUgBs9LFW/lWP3qzuzxUUfE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.rj0vdbqxuu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj0vdbqxuu" + }, + { + "Name": "integrity", + "Value": "sha256-hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.rj0vdbqxuu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj0vdbqxuu" + }, + { + "Name": "integrity", + "Value": "sha256-hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.rj0vdbqxuu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj0vdbqxuu" + }, + { + "Name": "integrity", + "Value": "sha256-Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005681818182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hy2sT6452zgd93cT8JOfW8pP6jzjV5LTI7q/kh5twwM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "175" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qz9MW83oqK+ov94CtRbiqe3Awg9yBF/HeI7I2mYwm1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.jyle6nnkbr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyle6nnkbr" + }, + { + "Name": "integrity", + "Value": "sha256-Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.jyle6nnkbr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyle6nnkbr" + }, + { + "Name": "integrity", + "Value": "sha256-Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.jyle6nnkbr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jyle6nnkbr" + }, + { + "Name": "integrity", + "Value": "sha256-x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vae4VoQLQMm977EOKDFLFKD8zFaVhLkpZ/lG/RE+sdU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x9DqnCuYGWoqe16Z40rfCYyTLMvDQxllG/3TMdo7eeI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.bi669gzj30.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000348432056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2869" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bi669gzj30" + }, + { + "Name": "integrity", + "Value": "sha256-cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.bi669gzj30.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8584" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bi669gzj30" + }, + { + "Name": "integrity", + "Value": "sha256-cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.bi669gzj30.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2869" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bi669gzj30" + }, + { + "Name": "integrity", + "Value": "sha256-5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000348432056" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2869" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8584" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cz8WUVO5c/h3hrlPs95nYCJ2BSvDhErTA/yrqqTpQoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2869" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5mm++/ombvSSWPgFVLYWK/mfmBrRIgz7fw6bgt4PZaE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.2fo3pgjbc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2fo3pgjbc9" + }, + { + "Name": "integrity", + "Value": "sha256-oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.2fo3pgjbc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "632" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2fo3pgjbc9" + }, + { + "Name": "integrity", + "Value": "sha256-oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.2fo3pgjbc9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2fo3pgjbc9" + }, + { + "Name": "integrity", + "Value": "sha256-dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "632" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oniXG5t27rv44HwXG0hZO4Rlk88Mgucw3KtC56hD4A4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dmuHFTzD1HOZn1Q9JMHZv6bHd81rW2/9nCTcI+uH2kQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.s0i7d798qp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0i7d798qp" + }, + { + "Name": "integrity", + "Value": "sha256-BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.s0i7d798qp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0i7d798qp" + }, + { + "Name": "integrity", + "Value": "sha256-BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.s0i7d798qp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0i7d798qp" + }, + { + "Name": "integrity", + "Value": "sha256-n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BHA79W9jos3gXR7ZwYhKhfTQLB+Hbt9JlkyvYGT8REc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ps.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n35tj2Hd2RRCKot4wRVY0tnMz5BEgxSrz8fIZ4RJFNc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.pxmviwf5ql.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000289603244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pxmviwf5ql" + }, + { + "Name": "integrity", + "Value": "sha256-I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.pxmviwf5ql.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8718" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pxmviwf5ql" + }, + { + "Name": "integrity", + "Value": "sha256-I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.pxmviwf5ql.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pxmviwf5ql" + }, + { + "Name": "integrity", + "Value": "sha256-/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000289603244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8718" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I3hA950g0sP7Uv73QBDt9krcYnOC/DK0PxE1BqKewNc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3452" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/PsVMqVi11oClsYqStSwGXUmoLnX2TM4tiOmc4tjFms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.kcizvxe8y7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kcizvxe8y7" + }, + { + "Name": "integrity", + "Value": "sha256-XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.kcizvxe8y7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kcizvxe8y7" + }, + { + "Name": "integrity", + "Value": "sha256-XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.kcizvxe8y7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kcizvxe8y7" + }, + { + "Name": "integrity", + "Value": "sha256-FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XDXKCeorp97/+rZPS/oTmQR6dOXqZWTPt9O9iy0dKcY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/pw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FPmWJQ4/H/fK1Kl6zTrs2JxcwF54wfCRo9eegvrR/GA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.3dou65ou1a.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000160307791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dou65ou1a" + }, + { + "Name": "integrity", + "Value": "sha256-19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.3dou65ou1a.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "17402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dou65ou1a" + }, + { + "Name": "integrity", + "Value": "sha256-19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.3dou65ou1a.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dou65ou1a" + }, + { + "Name": "integrity", + "Value": "sha256-6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000160307791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "17402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-19BSlLqczJpgWI4n2mr8+A0K9vIxxJMfqvt3KrypNEA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/py.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6G9WOIbWXrL3K7Nk6ZuVCuaD7nKzbh8WmGCPQZpsZKE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.qxekhrbkyf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004385964912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxekhrbkyf" + }, + { + "Name": "integrity", + "Value": "sha256-YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.qxekhrbkyf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxekhrbkyf" + }, + { + "Name": "integrity", + "Value": "sha256-YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.qxekhrbkyf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxekhrbkyf" + }, + { + "Name": "integrity", + "Value": "sha256-xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004385964912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YsqNck6DTdG8dRdZJuXIl3j86WFWJm10dfM144bX56U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/qa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xQzdc1Sub/SAEZZ/QS3x8z9rgyoZqZBwrbDgKm7a/ho=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.13bwur73c3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13bwur73c3" + }, + { + "Name": "integrity", + "Value": "sha256-HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.13bwur73c3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13bwur73c3" + }, + { + "Name": "integrity", + "Value": "sha256-HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.13bwur73c3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13bwur73c3" + }, + { + "Name": "integrity", + "Value": "sha256-Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HVoTPMAOA1VeeZNjC+nNkeP3zXZR4PrqNRr0InPipPM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/re.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y4VNCKpalhWohnRbgJRHnbPsrWo2CHWI0uLzWNcF8ks=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.sfcje6am3y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004587155963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "217" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sfcje6am3y" + }, + { + "Name": "integrity", + "Value": "sha256-SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.sfcje6am3y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sfcje6am3y" + }, + { + "Name": "integrity", + "Value": "sha256-SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.sfcje6am3y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "217" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sfcje6am3y" + }, + { + "Name": "integrity", + "Value": "sha256-Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004587155963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "217" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SHSQXjNEvXSDpPP4Ms0c4KBptKbGiOIHWXBqdKYrLzg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ro.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "217" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Iwy197tWa3IpjgGG4ORvAbekwFQhS0rbbIErz30IElY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.qn2fuk7srj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019135460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qn2fuk7srj" + }, + { + "Name": "integrity", + "Value": "sha256-Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.qn2fuk7srj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "187285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qn2fuk7srj" + }, + { + "Name": "integrity", + "Value": "sha256-Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.qn2fuk7srj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qn2fuk7srj" + }, + { + "Name": "integrity", + "Value": "sha256-NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019135460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "187285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ntnvn2CL509m/mj+qCK0rbcavgPlO5QqdQOyqIIsE6w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NkJQmhGwwxni1PUX+nwiAnGl4gnKfPZOZDOsZc6v/f4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.rvu12mksbo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rvu12mksbo" + }, + { + "Name": "integrity", + "Value": "sha256-l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.rvu12mksbo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rvu12mksbo" + }, + { + "Name": "integrity", + "Value": "sha256-l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.rvu12mksbo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rvu12mksbo" + }, + { + "Name": "integrity", + "Value": "sha256-qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l+yVuttrGgdZZBkad9B36kC6SDCTAXrUhq2/ECUmiqY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ru.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qU6GNhsEgdJkB8hEL/RjtG/wu/0i5X1ZJRfmRqhkGDg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.4ny1s83hxd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ny1s83hxd" + }, + { + "Name": "integrity", + "Value": "sha256-oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.4ny1s83hxd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ny1s83hxd" + }, + { + "Name": "integrity", + "Value": "sha256-oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.4ny1s83hxd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ny1s83hxd" + }, + { + "Name": "integrity", + "Value": "sha256-M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002487562189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "761" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oJGoRpur0AUCge5YdP6DP4ii9NwZdiSXPyKHhEPalQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/rw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "401" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M5pY9hiB0gQsSGuK1bsqsUq0+vTmtn+mh7nfPYwDCEc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.kw7sw09bwh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000230361668" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4340" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw7sw09bwh" + }, + { + "Name": "integrity", + "Value": "sha256-/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.kw7sw09bwh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw7sw09bwh" + }, + { + "Name": "integrity", + "Value": "sha256-/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.kw7sw09bwh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4340" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kw7sw09bwh" + }, + { + "Name": "integrity", + "Value": "sha256-xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000230361668" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4340" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/HhPBAsO5cz0gd6BZ1aEHPmDCeczEUXGPbHY/IwxOPE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4340" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xEKycnNJ3IY7949O+yQefzq+NPL8j+gD93RJ/6D5xUE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.2m2572nb78.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002105263158" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m2572nb78" + }, + { + "Name": "integrity", + "Value": "sha256-entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.2m2572nb78.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m2572nb78" + }, + { + "Name": "integrity", + "Value": "sha256-entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.2m2572nb78.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m2572nb78" + }, + { + "Name": "integrity", + "Value": "sha256-jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002105263158" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-entqAVWLp1tc3NHx7gEJm9qEDiwxaY0JW7wOAdFblZg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jCJCFn1RiZ3ZD9smS1HXhkQ5yDqGKFs22Q9cHGY4jD0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.qc0pp0wyye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003154574132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qc0pp0wyye" + }, + { + "Name": "integrity", + "Value": "sha256-9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.qc0pp0wyye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qc0pp0wyye" + }, + { + "Name": "integrity", + "Value": "sha256-9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.qc0pp0wyye.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qc0pp0wyye" + }, + { + "Name": "integrity", + "Value": "sha256-T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003154574132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "584" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9vjcHHT8emeSTpzmPjxf96/3R6CE8nvQhPhuLFPs0i0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T1BlXRT4U8GvbkMTZGNXd0ld8pE0CnkLioyOHuPr5is=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.ks5hi7z4k1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003278688525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ks5hi7z4k1" + }, + { + "Name": "integrity", + "Value": "sha256-bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.ks5hi7z4k1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ks5hi7z4k1" + }, + { + "Name": "integrity", + "Value": "sha256-bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.ks5hi7z4k1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ks5hi7z4k1" + }, + { + "Name": "integrity", + "Value": "sha256-GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003278688525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bMrbFGNSXxuqywxzbb93gpZdWyUYfOs3DQR0jxNbDvA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "304" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GPh0DkZ83l3IVg1NZp+5yjpJcni2So5Sr4AoecM758k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.eafxwssa9j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eafxwssa9j" + }, + { + "Name": "integrity", + "Value": "sha256-phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.eafxwssa9j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eafxwssa9j" + }, + { + "Name": "integrity", + "Value": "sha256-phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.eafxwssa9j.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eafxwssa9j" + }, + { + "Name": "integrity", + "Value": "sha256-VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-phsPY+qyMOVodUOnj7vh0DQyo5HZVtbspJB9sQfP9DQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/se.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VsQ3TMPW9iXzF3sX9AeXe9s8Z36KL/a/QKxl2WwxyMg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002212389381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "961" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.vic11eidxp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002212389381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vic11eidxp" + }, + { + "Name": "integrity", + "Value": "sha256-WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.vic11eidxp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "961" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vic11eidxp" + }, + { + "Name": "integrity", + "Value": "sha256-WRGjv14EEXWF6UClDggSz66kWY0H0dLfeOGt7Vm/yCc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sg.vic11eidxp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vic11eidxp" + }, + { + "Name": "integrity", + "Value": "sha256-QZDk5wGyyzuT6zrKTGhixrmgDmmS/MVrLAgyt0IY7RM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.kxxswd9w27.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000088770528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kxxswd9w27" + }, + { + "Name": "integrity", + "Value": "sha256-OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.kxxswd9w27.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kxxswd9w27" + }, + { + "Name": "integrity", + "Value": "sha256-OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.kxxswd9w27.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kxxswd9w27" + }, + { + "Name": "integrity", + "Value": "sha256-1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000088770528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "30194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OGG/6ShaRl/S/L706qE+kW2Nuf/YfWDt1iC25pFVERE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1Mlu/Oib693MQTwkGgPwzHF94sdd6G6c3qVqERqiauo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.jzcetiymxm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001079913607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "925" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jzcetiymxm" + }, + { + "Name": "integrity", + "Value": "sha256-P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.jzcetiymxm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2083" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jzcetiymxm" + }, + { + "Name": "integrity", + "Value": "sha256-P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.jzcetiymxm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "925" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jzcetiymxm" + }, + { + "Name": "integrity", + "Value": "sha256-1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001079913607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "925" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2083" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P57TsvcMdT0TBB+OoXlmFUrczP69xQdz8d+88kZkGqE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/si.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "925" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1l/8FamvLrSMqh+txKvR5x6JTqFFAI0gT1YhRCS5JJs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005076142132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.zshyus46in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005076142132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zshyus46in" + }, + { + "Name": "integrity", + "Value": "sha256-oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.zshyus46in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zshyus46in" + }, + { + "Name": "integrity", + "Value": "sha256-oxzTfrOLEwYKrgNJSW09JNGAdkDoNXQkJUlDqVIg5l4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sj.zshyus46in.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "196" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zshyus46in" + }, + { + "Name": "integrity", + "Value": "sha256-BOdeQVFfIKjZ3MIF6/M+gjkzkKQukop1lC878XlzgWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.74ona0yjlj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001782531194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74ona0yjlj" + }, + { + "Name": "integrity", + "Value": "sha256-1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.74ona0yjlj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1182" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74ona0yjlj" + }, + { + "Name": "integrity", + "Value": "sha256-1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.74ona0yjlj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74ona0yjlj" + }, + { + "Name": "integrity", + "Value": "sha256-841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001782531194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1182" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1wOhItRqMksbkspKyKrRI3kNhHeY76hQ5JXIb/nV/Js=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-841zYi1DoxSGxIUWvNx0+HwXj++IJAEHjwAuvPknjK4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.cs3s1szk1t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003412969283" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cs3s1szk1t" + }, + { + "Name": "integrity", + "Value": "sha256-1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.cs3s1szk1t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cs3s1szk1t" + }, + { + "Name": "integrity", + "Value": "sha256-1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.cs3s1szk1t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cs3s1szk1t" + }, + { + "Name": "integrity", + "Value": "sha256-5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003412969283" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1DzHJNpxLHiRq9y19sTSXYTjQNM/gUqf//Fcnw7LX6s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "292" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5RT9xRkc4VVQzTnSxFDw5g4XTzACbsDmd/gCfhcY/yE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.9rf6w21861.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189573460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9rf6w21861" + }, + { + "Name": "integrity", + "Value": "sha256-u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.9rf6w21861.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15818" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9rf6w21861" + }, + { + "Name": "integrity", + "Value": "sha256-u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.9rf6w21861.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9rf6w21861" + }, + { + "Name": "integrity", + "Value": "sha256-WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000189573460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15818" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u/KWcqPHZoK4yXoft77yBtWRySXi9XMqvgevAQDIAgo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WzW6D8D2lcRZvuRHcU9El3nznYk2a0CheTmjxnMNiqw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.gj7ow9irk6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003731343284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gj7ow9irk6" + }, + { + "Name": "integrity", + "Value": "sha256-1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.gj7ow9irk6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gj7ow9irk6" + }, + { + "Name": "integrity", + "Value": "sha256-1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.gj7ow9irk6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gj7ow9irk6" + }, + { + "Name": "integrity", + "Value": "sha256-GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003731343284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "422" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1P8+XHE7jAXlYIIziepgmNJMpx3iH9l7CbF02Q5Plbg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "267" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GIWYKdn+qolw8fx7fWus3gOItNCiROIq34VPUsNFtNI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.jwipu5h8bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002994011976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwipu5h8bi" + }, + { + "Name": "integrity", + "Value": "sha256-DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.jwipu5h8bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwipu5h8bi" + }, + { + "Name": "integrity", + "Value": "sha256-DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.jwipu5h8bi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jwipu5h8bi" + }, + { + "Name": "integrity", + "Value": "sha256-5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002994011976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DbKyw7fjvMngGhM2ss5dfJB8v2BJUJ37qszP59mPlsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/so.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5wlENVbEMUrZjCfRMGTNLAGDa+PRvqqSsKnGSAKP1vM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.59ksox06iy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004504504505" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "221" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ksox06iy" + }, + { + "Name": "integrity", + "Value": "sha256-d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.59ksox06iy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ksox06iy" + }, + { + "Name": "integrity", + "Value": "sha256-d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.59ksox06iy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "221" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59ksox06iy" + }, + { + "Name": "integrity", + "Value": "sha256-mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004504504505" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "221" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d+51cabnl7POy9OAAhnQtut3TFPQwfG52CX/q6Ee204=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "221" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mW/d0BZjB3iLt7mLEap3gy0dUnQPwC+woBOW/7Grub0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.kv4ap4mmvd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004115226337" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kv4ap4mmvd" + }, + { + "Name": "integrity", + "Value": "sha256-0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.kv4ap4mmvd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kv4ap4mmvd" + }, + { + "Name": "integrity", + "Value": "sha256-0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.kv4ap4mmvd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kv4ap4mmvd" + }, + { + "Name": "integrity", + "Value": "sha256-wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004115226337" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0J9FhWJOJ63F1wBdZhML/38gz33xfG84PlOdHV4h+CQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ss.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wPKOcEDoe2oX3v7NgXrxZQvKIyF9TF4VJ/DlebM/UqE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.jx2zk6xf3z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002724795640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx2zk6xf3z" + }, + { + "Name": "integrity", + "Value": "sha256-lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.jx2zk6xf3z.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "936" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx2zk6xf3z" + }, + { + "Name": "integrity", + "Value": "sha256-lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.jx2zk6xf3z.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jx2zk6xf3z" + }, + { + "Name": "integrity", + "Value": "sha256-SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002724795640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "936" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lzUvP3EAn/0gm6ajAl3VBL77oNVcRpnYgtp/bPzJbjA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/st.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SzvUFgflbsYaUNL21Kks4Sbq/obnDboHHnEghSJWLIo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041203131" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24269" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "83834" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24269" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.vjvvwglo00.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041203131" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24269" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjvvwglo00" + }, + { + "Name": "integrity", + "Value": "sha256-hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.vjvvwglo00.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "83834" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjvvwglo00" + }, + { + "Name": "integrity", + "Value": "sha256-hZ7Yf7iRPDbS5eekU0zo5hQK9nLN2DfLC+tQTfAq/R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sv.vjvvwglo00.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24269" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjvvwglo00" + }, + { + "Name": "integrity", + "Value": "sha256-CV5B72kGo0O/uICXSn78vz+vdKjhkVbs1OzcaHgBwkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.eq1c4a8l2r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000221582096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4512" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq1c4a8l2r" + }, + { + "Name": "integrity", + "Value": "sha256-OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.eq1c4a8l2r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13048" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq1c4a8l2r" + }, + { + "Name": "integrity", + "Value": "sha256-OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.eq1c4a8l2r.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4512" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eq1c4a8l2r" + }, + { + "Name": "integrity", + "Value": "sha256-rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000221582096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4512" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "13048" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OsCU7SCeWaCh/U8+eeB1gS7p+ExjyjtrE7szXGRZkoM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4512" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rRYsmqNBzf8OuSgAEYcOWGQSNqG5SOBkYAaaJkimv3o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.ogfs6kdena.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogfs6kdena" + }, + { + "Name": "integrity", + "Value": "sha256-SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.ogfs6kdena.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogfs6kdena" + }, + { + "Name": "integrity", + "Value": "sha256-SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.ogfs6kdena.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogfs6kdena" + }, + { + "Name": "integrity", + "Value": "sha256-SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SCNtLZpX1SAn0X0mbDtWBC21HXuVQe9oBiEym3Ygj0M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SiEVJvaaleD0nTQrwOrV834UTtJuv0dFYjEcTicoo68=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.kg4jrcmxel.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000455788514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kg4jrcmxel" + }, + { + "Name": "integrity", + "Value": "sha256-rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.kg4jrcmxel.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6734" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kg4jrcmxel" + }, + { + "Name": "integrity", + "Value": "sha256-rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.kg4jrcmxel.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kg4jrcmxel" + }, + { + "Name": "integrity", + "Value": "sha256-Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000455788514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6734" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rBc7zyyiwaTQOQeTurNCs0pc+NLlyQgYQPQK9W520Yo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/sz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jks5uBzQnMayiH2f8fRo7vjE133J0mHRqrLkYr+Qgxk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308832613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "14830" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.yb3i3n4i74.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308832613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb3i3n4i74" + }, + { + "Name": "integrity", + "Value": "sha256-XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.yb3i3n4i74.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14830" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb3i3n4i74" + }, + { + "Name": "integrity", + "Value": "sha256-XkDS96q/DfBNEbpYYmr954JQuJDScgFQ4Zl1gIC3Wbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tc.yb3i3n4i74.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb3i3n4i74" + }, + { + "Name": "integrity", + "Value": "sha256-FDyEJHAjOMxtAXJyKHJdwvRcd6Epaad4vncaEHazt9k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.n1m5t6hwfy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1m5t6hwfy" + }, + { + "Name": "integrity", + "Value": "sha256-Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.n1m5t6hwfy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "286" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1m5t6hwfy" + }, + { + "Name": "integrity", + "Value": "sha256-Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.n1m5t6hwfy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1m5t6hwfy" + }, + { + "Name": "integrity", + "Value": "sha256-KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "286" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jdz1w/Oc/EL9TSrMpdIT5husnOl1ZX2hIlOhQ5z9lUk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/td.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KWqM1JQRaqWgUpkiM+Gbbt++1DlyLem7xeHzVjjStlg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.nt54lur4eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002145922747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nt54lur4eu" + }, + { + "Name": "integrity", + "Value": "sha256-heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.nt54lur4eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nt54lur4eu" + }, + { + "Name": "integrity", + "Value": "sha256-heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.nt54lur4eu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nt54lur4eu" + }, + { + "Name": "integrity", + "Value": "sha256-kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002145922747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-heyNDf/10ci+pv82evO7LEPKdMx+MsXnPP9OoKbGOv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kPP0LY56ph5TUwbCKi7KteS82hGahT5qWiCdsE+plBk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.622dyh5q39.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002444987775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "622dyh5q39" + }, + { + "Name": "integrity", + "Value": "sha256-rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.622dyh5q39.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "622dyh5q39" + }, + { + "Name": "integrity", + "Value": "sha256-rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.622dyh5q39.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "622dyh5q39" + }, + { + "Name": "integrity", + "Value": "sha256-9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002444987775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rmFqB8E7Pu8IMkBZ5w2aVMlvLEhLkEum6FOi/GP+Edg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9VXfEJ5gW0UIQ3ZUg9QAYeOx29quERrQ+IvpWMTnTNY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.pksyldkb88.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004854368932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pksyldkb88" + }, + { + "Name": "integrity", + "Value": "sha256-17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.pksyldkb88.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pksyldkb88" + }, + { + "Name": "integrity", + "Value": "sha256-17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.pksyldkb88.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pksyldkb88" + }, + { + "Name": "integrity", + "Value": "sha256-jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004854368932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-17HAR2nutB+rjh2VphJsADXVxvapfnHwbpoKPfVRnlc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/th.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jNmyGi9LwrCYJjRy0QeImcmPRWGbQ0gnJWuIQVb36Xk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.5pjvn4vwrh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pjvn4vwrh" + }, + { + "Name": "integrity", + "Value": "sha256-h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.5pjvn4vwrh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1793" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pjvn4vwrh" + }, + { + "Name": "integrity", + "Value": "sha256-h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.5pjvn4vwrh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pjvn4vwrh" + }, + { + "Name": "integrity", + "Value": "sha256-CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1793" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5M3rDsoxnnOeBNjcsMo3XnU+HzjwfQaBfddBRd0Rto=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CZ1oYk6ukin7iQsr/5aHr+nUKCK7i8elfHuO+hVuchA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.v3og9cmrof.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v3og9cmrof" + }, + { + "Name": "integrity", + "Value": "sha256-9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.v3og9cmrof.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v3og9cmrof" + }, + { + "Name": "integrity", + "Value": "sha256-9ai9LceK/YTOkw3MXca9IQ8uMYnRJxSh1SV1I1a8JYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tk.v3og9cmrof.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v3og9cmrof" + }, + { + "Name": "integrity", + "Value": "sha256-DLLp/dq72cMlbUUPLzRFR1RkxhHygFL9k2Gh6/wJ/dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.conjpg4szu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "conjpg4szu" + }, + { + "Name": "integrity", + "Value": "sha256-nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.conjpg4szu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "conjpg4szu" + }, + { + "Name": "integrity", + "Value": "sha256-nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.conjpg4szu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "conjpg4szu" + }, + { + "Name": "integrity", + "Value": "sha256-GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nDfPbn4s6FkuuKwiOZ0SIjKaGoU03n7pW4dvl/p1c3E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GscSrjB1HLvQa6ypsydoUgDDn1/fB5y1c3cIDZw7rYA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000137324911" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "31769" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.wup7qb49pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000137324911" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wup7qb49pa" + }, + { + "Name": "integrity", + "Value": "sha256-WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.wup7qb49pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31769" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wup7qb49pa" + }, + { + "Name": "integrity", + "Value": "sha256-WJsNRRGOj/bLpw15sr/ohqJVFzUHLoApam1BKyXwm+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tm.wup7qb49pa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wup7qb49pa" + }, + { + "Name": "integrity", + "Value": "sha256-Iun/an2LYU3YhmMo1+2GSI4GoxbkocZqY2R7ZHE19aU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.dq2sqdsvp7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002347417840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dq2sqdsvp7" + }, + { + "Name": "integrity", + "Value": "sha256-1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.dq2sqdsvp7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dq2sqdsvp7" + }, + { + "Name": "integrity", + "Value": "sha256-1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.dq2sqdsvp7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dq2sqdsvp7" + }, + { + "Name": "integrity", + "Value": "sha256-ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002347417840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1SotnqrPRfYtOrZ50/awTdXUBPfFo97u2dzzNcGMzQY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "425" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ldPkqLfu8cQ2Z7QQ4R7pNt82gdpPMdPT5BzaTgkzFSo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.5eiq5i5mrm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004065040650" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5eiq5i5mrm" + }, + { + "Name": "integrity", + "Value": "sha256-nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.5eiq5i5mrm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5eiq5i5mrm" + }, + { + "Name": "integrity", + "Value": "sha256-nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.5eiq5i5mrm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5eiq5i5mrm" + }, + { + "Name": "integrity", + "Value": "sha256-Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004065040650" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nVxqAIAA0WNOrIFxrby1VgebkhNTYOY+d8dLO1mwW+k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/to.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "245" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nh+pxojZMC+sBYCfOrmZXI/3V0QPUYChYy8nCADnXlc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.aftjypwqea.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aftjypwqea" + }, + { + "Name": "integrity", + "Value": "sha256-Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.aftjypwqea.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aftjypwqea" + }, + { + "Name": "integrity", + "Value": "sha256-Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.aftjypwqea.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aftjypwqea" + }, + { + "Name": "integrity", + "Value": "sha256-wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sv7Vj4p3kZn2RZre3rBqVGg+QI8zqYYfZfsUQnhCEzw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wSJ7P8wb1bVZuZSa3CACveZ4UZ/ruwgbkTJME4O7oGI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.gs27r4gs4g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004166666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gs27r4gs4g" + }, + { + "Name": "integrity", + "Value": "sha256-IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.gs27r4gs4g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gs27r4gs4g" + }, + { + "Name": "integrity", + "Value": "sha256-IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.gs27r4gs4g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gs27r4gs4g" + }, + { + "Name": "integrity", + "Value": "sha256-TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004166666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IGs4/x/ImQ28eikbqbpLq9TjvpymM9bX0WHfi3ws3WA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TEywmjZ/7/7bAAdc3vKWRe74eTbL9c5enmkFYJzE1VE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.rlgkgl578t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001517450683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "658" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rlgkgl578t" + }, + { + "Name": "integrity", + "Value": "sha256-DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.rlgkgl578t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1732" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rlgkgl578t" + }, + { + "Name": "integrity", + "Value": "sha256-DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.rlgkgl578t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "658" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rlgkgl578t" + }, + { + "Name": "integrity", + "Value": "sha256-7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001517450683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "658" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1732" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DyXjzmzQzEtXQB3aLQsBRMdBymU0/xBW+9AugxYZvLw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "658" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7C+IvLNrjqGpnqOMj4DW2Z3zaTAlcAi4ovuJ6H4A1ac=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.9c50fwt8fz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9c50fwt8fz" + }, + { + "Name": "integrity", + "Value": "sha256-9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.9c50fwt8fz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "968" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9c50fwt8fz" + }, + { + "Name": "integrity", + "Value": "sha256-9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.9c50fwt8fz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9c50fwt8fz" + }, + { + "Name": "integrity", + "Value": "sha256-F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "968" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9yVpZrdrocbQqez7zaD86u9Rv1FI1cqhD8Ul08ncfIo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F4S8QiAM/OgYwZa1LdieD0y3qpGBsHcAstU/SBDRG3I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "617" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.z13ojp4aop.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z13ojp4aop" + }, + { + "Name": "integrity", + "Value": "sha256-iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.z13ojp4aop.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "617" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z13ojp4aop" + }, + { + "Name": "integrity", + "Value": "sha256-iSPXqbW4h7jT/N3+ZN+/zkyGD3UOZF2R/x3Mfhsttpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/tz.z13ojp4aop.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z13ojp4aop" + }, + { + "Name": "integrity", + "Value": "sha256-eqQaan3o6OrjTI1Adb5OBcoT0Ubn0XfZZ5LqrBva25A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/tz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.akv4avn4sq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "akv4avn4sq" + }, + { + "Name": "integrity", + "Value": "sha256-yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.akv4avn4sq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "akv4avn4sq" + }, + { + "Name": "integrity", + "Value": "sha256-yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.akv4avn4sq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "akv4avn4sq" + }, + { + "Name": "integrity", + "Value": "sha256-HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yg7V/9a9SZgqmqr3votp+fxTqaOSYucD3Un+umGZShw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ua.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HcQX0jYqSI3v/6sDvoYuQKn0x4C4yQW3Lum/x9Larmk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.kaj6pa7ml5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000721500722" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kaj6pa7ml5" + }, + { + "Name": "integrity", + "Value": "sha256-1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.kaj6pa7ml5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4054" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kaj6pa7ml5" + }, + { + "Name": "integrity", + "Value": "sha256-1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.kaj6pa7ml5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kaj6pa7ml5" + }, + { + "Name": "integrity", + "Value": "sha256-D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000721500722" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4054" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1EdU2yiMmAff4pU9xjAblqbT/AVtP7aVnpv0Cf9SPp4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ug.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D8suwLkAaxt4eSSMRSrFr/KdtyB+HK6Bez1rIGcfHu8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.dpktncmwti.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dpktncmwti" + }, + { + "Name": "integrity", + "Value": "sha256-72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.dpktncmwti.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3987" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dpktncmwti" + }, + { + "Name": "integrity", + "Value": "sha256-72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.dpktncmwti.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dpktncmwti" + }, + { + "Name": "integrity", + "Value": "sha256-ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3987" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-72rl0DH7G7XS5P7ki+jbuGuo7dAxH3R9plETSKt0TWI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/um.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ybTLMirzdIEm6D35S3ivV9HYFrcV08EyMnHo8OZYn7g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.mvrldw2628.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000122850123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvrldw2628" + }, + { + "Name": "integrity", + "Value": "sha256-Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.mvrldw2628.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvrldw2628" + }, + { + "Name": "integrity", + "Value": "sha256-Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.mvrldw2628.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvrldw2628" + }, + { + "Name": "integrity", + "Value": "sha256-O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000122850123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "20201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ys2WHSRhbKIxM1HsKTt3nm0Zx2DJZF4o0yBbVZhp/nY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/un.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O2a8ir06RUidUWml84UtzIrlaAu8kFDJJtJlkzR4RY4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.sh3evydvwz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002169197397" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "460" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh3evydvwz" + }, + { + "Name": "integrity", + "Value": "sha256-MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.sh3evydvwz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh3evydvwz" + }, + { + "Name": "integrity", + "Value": "sha256-MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.sh3evydvwz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "460" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sh3evydvwz" + }, + { + "Name": "integrity", + "Value": "sha256-WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002169197397" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "460" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MOC3EoYD7Z5hgFM3D59qlJKnjkjTmnIYsAHXpEcqkuQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/us.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "460" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WlgHgB0868mZrIHWVS+6/CknmtkJkc4hXmHYnX3S5Os=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.dzatvq03yl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001302083333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzatvq03yl" + }, + { + "Name": "integrity", + "Value": "sha256-JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.dzatvq03yl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzatvq03yl" + }, + { + "Name": "integrity", + "Value": "sha256-JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.dzatvq03yl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzatvq03yl" + }, + { + "Name": "integrity", + "Value": "sha256-znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001302083333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1743" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JzxbV0PXp6ff1kxsifvpXxwF6FwLskt28+3gcogVDIc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-znyWUBUg67f6k6CO5sLhHQVjqWndEIigSUBpFrq34go=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.tj8sut6gjq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tj8sut6gjq" + }, + { + "Name": "integrity", + "Value": "sha256-txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.tj8sut6gjq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tj8sut6gjq" + }, + { + "Name": "integrity", + "Value": "sha256-txMtLZboUm3ojB1WRJQg8f77WZEUxu/Xo5+Rwp3TMCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/uz.tj8sut6gjq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tj8sut6gjq" + }, + { + "Name": "integrity", + "Value": "sha256-bXlz7UHNUsvgluHGc5nrdYqxi3LygA5v6ZVv0DwXLKE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/uz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000109122654" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "91190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.u8zih56yp5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000109122654" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u8zih56yp5" + }, + { + "Name": "integrity", + "Value": "sha256-ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.u8zih56yp5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "91190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u8zih56yp5" + }, + { + "Name": "integrity", + "Value": "sha256-ErgNmaieY/WOGr7t7srRUgW08NodrsKZxaARPxHt4dY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/va.u8zih56yp5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u8zih56yp5" + }, + { + "Name": "integrity", + "Value": "sha256-DkS9Doyua0gtFLW30zoYq7BNvWo+Z32ds/mZxEJCLyE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/va.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.rt00ruzkvc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003355704698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt00ruzkvc" + }, + { + "Name": "integrity", + "Value": "sha256-L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.rt00ruzkvc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt00ruzkvc" + }, + { + "Name": "integrity", + "Value": "sha256-L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.rt00ruzkvc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt00ruzkvc" + }, + { + "Name": "integrity", + "Value": "sha256-xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003355704698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "506" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L2fuXcr+rJYrrbUm9gmKEGDW/ziMeOXyXj7V8+yWFsY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xPMdBb0j1vZj+6lVLA9WGV5EO4v6Xc4juBzC31sChF0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.5jahkugh36.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002457002457" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jahkugh36" + }, + { + "Name": "integrity", + "Value": "sha256-b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.5jahkugh36.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jahkugh36" + }, + { + "Name": "integrity", + "Value": "sha256-b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.5jahkugh36.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5jahkugh36" + }, + { + "Name": "integrity", + "Value": "sha256-JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002457002457" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b6T1RT2y9CuTh4GDsvLCF7Sk34W2Lb/Tup8nFSnRxFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ve.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JHxzuOiUQNc2dB9ew0kgc9lm1U0enzasYivUeCpzzSs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.ca4q0njjep.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000178731010" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca4q0njjep" + }, + { + "Name": "integrity", + "Value": "sha256-zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.ca4q0njjep.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24942" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca4q0njjep" + }, + { + "Name": "integrity", + "Value": "sha256-zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.ca4q0njjep.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca4q0njjep" + }, + { + "Name": "integrity", + "Value": "sha256-MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000178731010" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "24942" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zLt5jE+kSLaR84vd7S8W3BehIjs+QAheOkEW+CR2EHY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MwnlDo7CYZpQ/Qg/I17tbslyYGBk2OmyXpJCX2ovmkM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.l23aodampd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000269469146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l23aodampd" + }, + { + "Name": "integrity", + "Value": "sha256-80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.l23aodampd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l23aodampd" + }, + { + "Name": "integrity", + "Value": "sha256-80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.l23aodampd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l23aodampd" + }, + { + "Name": "integrity", + "Value": "sha256-ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000269469146" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-80WaMc77jvqYeRAGpvOdxU6WUo9p2zyhdFFtdfzuRpk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3710" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ATBKa3r36dE2feb6Jb5p3Nat0AkGGZEHcoTmIhHJ+o0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.ebz3ry75e5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebz3ry75e5" + }, + { + "Name": "integrity", + "Value": "sha256-drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.ebz3ry75e5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebz3ry75e5" + }, + { + "Name": "integrity", + "Value": "sha256-drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.ebz3ry75e5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ebz3ry75e5" + }, + { + "Name": "integrity", + "Value": "sha256-hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drcceudjlj/W0mprdQzPI1vkRx8euCzOdTWBlWuFiVY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hVzZEUNX+KyQWEo1mIjcxL6gTtL1+2DiB8ucT1hw7hc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.cp872jp9wy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000641025641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cp872jp9wy" + }, + { + "Name": "integrity", + "Value": "sha256-0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.cp872jp9wy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cp872jp9wy" + }, + { + "Name": "integrity", + "Value": "sha256-0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.cp872jp9wy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cp872jp9wy" + }, + { + "Name": "integrity", + "Value": "sha256-iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000641025641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0GVzGiyXDdMlECXQIGKP/9CBVM8xyWGfmoHMkn3HOrw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/vu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iZ/vQL7ByH/5aajUtH2f2SYfDuD7JRXKuCoQT6+KkA0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.qwtzlywd0n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwtzlywd0n" + }, + { + "Name": "integrity", + "Value": "sha256-1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.qwtzlywd0n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwtzlywd0n" + }, + { + "Name": "integrity", + "Value": "sha256-1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.qwtzlywd0n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwtzlywd0n" + }, + { + "Name": "integrity", + "Value": "sha256-kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1kDL6cvuMeXnUXOIhJaYNICBsn6d/47rx+dq3awj7Wg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/wf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kMDdz98iXcEvN//b48CU8xvSuLUF/8JfU/KoS+EH1d0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.9vgycz45nb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002352941176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vgycz45nb" + }, + { + "Name": "integrity", + "Value": "sha256-G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.9vgycz45nb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "713" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vgycz45nb" + }, + { + "Name": "integrity", + "Value": "sha256-G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.9vgycz45nb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vgycz45nb" + }, + { + "Name": "integrity", + "Value": "sha256-yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002352941176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "713" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G/74BcNu9Kfg6n6MgEWKr0ueg3Mi5Njj+8uWXe1GL74=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ws.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yuBSa0ZUVojXhX6ALwVtwIcAfeorA6th4Mq9m7IVLUY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.aphlxyxezm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000295683028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aphlxyxezm" + }, + { + "Name": "integrity", + "Value": "sha256-3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.aphlxyxezm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8979" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aphlxyxezm" + }, + { + "Name": "integrity", + "Value": "sha256-3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.aphlxyxezm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aphlxyxezm" + }, + { + "Name": "integrity", + "Value": "sha256-PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000295683028" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8979" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3mW6/i3easYIgCWn/SDohrcOqaM2eaY77Le4iTSpXys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/xk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PGM1gu6JUWtB7JqpK281IxptzSab63pqAFBR6EsVBm8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.hz1j17d0np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz1j17d0np" + }, + { + "Name": "integrity", + "Value": "sha256-zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.hz1j17d0np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz1j17d0np" + }, + { + "Name": "integrity", + "Value": "sha256-zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.hz1j17d0np.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hz1j17d0np" + }, + { + "Name": "integrity", + "Value": "sha256-xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zX2wSH6DWZwLq3JDPNa8L3KGSIYobsDPv6BW2QDqRwA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/ye.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xEY5Ds2yoa/M/px4qSwGGQdhrZxslAG4r9sf+ngZhIY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.6ugfp1b5di.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ugfp1b5di" + }, + { + "Name": "integrity", + "Value": "sha256-ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.6ugfp1b5di.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ugfp1b5di" + }, + { + "Name": "integrity", + "Value": "sha256-ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.6ugfp1b5di.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ugfp1b5di" + }, + { + "Name": "integrity", + "Value": "sha256-K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ArB3fmomZ/6OW7JjJ1qWb3n12wm1wbuj8HuAjyXo7ig=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/yt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K47kPkK+Tq/2s7GHQI07zeQCaHjSbcPsamhD6ssyOxo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.guhts609dt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002145922747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "guhts609dt" + }, + { + "Name": "integrity", + "Value": "sha256-mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.guhts609dt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "889" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "guhts609dt" + }, + { + "Name": "integrity", + "Value": "sha256-mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.guhts609dt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "guhts609dt" + }, + { + "Name": "integrity", + "Value": "sha256-DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002145922747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "889" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mLOT7wEWAC8JMugBxtMW4fkA4Vee12nbsvHQYDxuGIQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/za.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "465" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DC98E6AzJdDYAZHtW0se2WKd8NO+BPSBOGgPxrVdvz4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.24qgybbqw5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429553265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24qgybbqw5" + }, + { + "Name": "integrity", + "Value": "sha256-znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.24qgybbqw5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5428" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24qgybbqw5" + }, + { + "Name": "integrity", + "Value": "sha256-znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.24qgybbqw5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24qgybbqw5" + }, + { + "Name": "integrity", + "Value": "sha256-VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429553265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5428" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-znnrWcEoqW+2Hb8e6/X/lAzeyLsgjQ6iQIOs1MfP6aE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VJDG1rO9V9gs7SaleE760PqZwT3EcdnZ10QYCvWJ+w8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.36maaehuow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000376364321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2656" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36maaehuow" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.36maaehuow.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6635" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36maaehuow" + }, + { + "Name": "integrity", + "Value": "sha256-RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.36maaehuow.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2656" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "36maaehuow" + }, + { + "Name": "integrity", + "Value": "sha256-GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000376364321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2656" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6635" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RZ9vOZDL3EzV+niuB3E2IVs58gHAEphbmIhkNeCJxRs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/1x1/zw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2656" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GS4S6pQVDf4tDxCmHzp1giN/m3QKoNRESJ5FonGAQ6U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.18er7rk4ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000081208381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "18er7rk4ye" + }, + { + "Name": "integrity", + "Value": "sha256-P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.18er7rk4ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "33623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "18er7rk4ye" + }, + { + "Name": "integrity", + "Value": "sha256-P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.18er7rk4ye.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "18er7rk4ye" + }, + { + "Name": "integrity", + "Value": "sha256-V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000081208381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "33623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4xpLxJxbFKSh6F1ZgUWucUgUl1FBAHvZ3JOuJ1f77E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ad.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V6HhSXj9ckR/uZUX1hBRC6Sb12xo9LZbPvlU0UfKVdw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.9xar5kmvxi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xar5kmvxi" + }, + { + "Name": "integrity", + "Value": "sha256-83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.9xar5kmvxi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xar5kmvxi" + }, + { + "Name": "integrity", + "Value": "sha256-83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.9xar5kmvxi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xar5kmvxi" + }, + { + "Name": "integrity", + "Value": "sha256-1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-83opAzU+SPq12pEjK2Q01NrzM8djBQeTqoN26RD+jMk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ae.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1GkrVslyTn12ViuI4iqbSRaLWUB+sJqQQgGj07Vp71c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.kb0m2s9r95.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000117426022" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kb0m2s9r95" + }, + { + "Name": "integrity", + "Value": "sha256-IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.kb0m2s9r95.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kb0m2s9r95" + }, + { + "Name": "integrity", + "Value": "sha256-IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.kb0m2s9r95.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kb0m2s9r95" + }, + { + "Name": "integrity", + "Value": "sha256-XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000117426022" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "21147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IC2SIF6ke54MtGo3AeNiA7m/amA/sdrb8oxDRaWYolc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/af.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XMEr4o08XvTorHwO6KpkA0ucuwkCu67HeV0evRt/bxM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.ot0fd9dfgs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ot0fd9dfgs" + }, + { + "Name": "integrity", + "Value": "sha256-FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.ot0fd9dfgs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "763" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ot0fd9dfgs" + }, + { + "Name": "integrity", + "Value": "sha256-FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.ot0fd9dfgs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ot0fd9dfgs" + }, + { + "Name": "integrity", + "Value": "sha256-denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002192982456" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "763" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FM1udTO2PQ6lfCLytXYhHkC8w5Vqz6UszdDsWmrsp70=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ag.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "455" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-denfuWsjeTXqhn+rXmGKKXGBC/LKVFlMUWUV0qsXw1A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.84d4mxoh8b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132696391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7535" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "84d4mxoh8b" + }, + { + "Name": "integrity", + "Value": "sha256-aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.84d4mxoh8b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "49022" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "84d4mxoh8b" + }, + { + "Name": "integrity", + "Value": "sha256-aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.84d4mxoh8b.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7535" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "84d4mxoh8b" + }, + { + "Name": "integrity", + "Value": "sha256-PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132696391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7535" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "49022" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aNX1TQ2Q/sJvT/zdgNaJKHNMzxXD5GUx30v8uKK+Eog=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ai.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7535" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PeVwACmIYn3+CCaLHxXvjLTmISXBhcK8p7l/0EHBeiE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.118rultwkj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000650618087" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "118rultwkj" + }, + { + "Name": "integrity", + "Value": "sha256-ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.118rultwkj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "118rultwkj" + }, + { + "Name": "integrity", + "Value": "sha256-ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.118rultwkj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "118rultwkj" + }, + { + "Name": "integrity", + "Value": "sha256-P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000650618087" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZYMQgnLy6W0djx5E36U02kznUaPBpDKNCcLOUoyAdRU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/al.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P22itzj1FRwzWGH9jYpSILYjpidp8oSVO7W8GaU3ze4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.mwpiebsd3y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006097560976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mwpiebsd3y" + }, + { + "Name": "integrity", + "Value": "sha256-pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.mwpiebsd3y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mwpiebsd3y" + }, + { + "Name": "integrity", + "Value": "sha256-pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.mwpiebsd3y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mwpiebsd3y" + }, + { + "Name": "integrity", + "Value": "sha256-R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006097560976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pi1D1ymzCVRZ1JhNQMvxqUSw4dJxf45ik0oPwMoDlbc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/am.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R9yHxqiC0JWHNdkgefQSafo7+wNZsCEReXd1hwF3bqM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1601" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.x9ad2w4o0n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9ad2w4o0n" + }, + { + "Name": "integrity", + "Value": "sha256-RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.x9ad2w4o0n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1601" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9ad2w4o0n" + }, + { + "Name": "integrity", + "Value": "sha256-RXefjUVsKq0U/IvvpXvcXWrwZS8bJojjhgWHkSsBa9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ao.x9ad2w4o0n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9ad2w4o0n" + }, + { + "Name": "integrity", + "Value": "sha256-MAPS5OaFcUVhQEj2RbPn1pqQhg7szZJhrVX6plEcv0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ao.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000362318841" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6148" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.yyc2y8lco0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000362318841" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyc2y8lco0" + }, + { + "Name": "integrity", + "Value": "sha256-KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.yyc2y8lco0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6148" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyc2y8lco0" + }, + { + "Name": "integrity", + "Value": "sha256-KoCtncBwo2pB5xjAqIXBcKivAnisN4cBakDgElqLJRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aq.yyc2y8lco0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyc2y8lco0" + }, + { + "Name": "integrity", + "Value": "sha256-91gQK6AIVJ1iB5J4WK8ofiBVfNBq4gH23OamOO03NYw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.c8kirvkjez.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000840336134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1189" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c8kirvkjez" + }, + { + "Name": "integrity", + "Value": "sha256-7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.c8kirvkjez.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c8kirvkjez" + }, + { + "Name": "integrity", + "Value": "sha256-7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.c8kirvkjez.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1189" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c8kirvkjez" + }, + { + "Name": "integrity", + "Value": "sha256-u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000840336134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1189" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3433" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7A0RNuRhKlZPRGCgeK9YEYjiWKXEH4Q7xCQIm5WEmPs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ar.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1189" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u2weTY5klbXoli5Sj1rR7USBv74syGK3Z5gKmZr+Mhk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.s7462lu45h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299940012" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s7462lu45h" + }, + { + "Name": "integrity", + "Value": "sha256-2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.s7462lu45h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s7462lu45h" + }, + { + "Name": "integrity", + "Value": "sha256-2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.s7462lu45h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s7462lu45h" + }, + { + "Name": "integrity", + "Value": "sha256-pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000299940012" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2PB8UJFJ0Zd3XuHvbEFGsiC5iSWLTALPPzUweyIvV7k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/as.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pveyX3nF80pRpftSKc0muf8KsgsZ2EvrBmbWWj6zwrg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.huft6nxt45.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "huft6nxt45" + }, + { + "Name": "integrity", + "Value": "sha256-hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.huft6nxt45.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "246" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "huft6nxt45" + }, + { + "Name": "integrity", + "Value": "sha256-hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.huft6nxt45.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "huft6nxt45" + }, + { + "Name": "integrity", + "Value": "sha256-nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "246" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hzgGHmKgJSv3/iWCog6OSWWePXjAbZ0gbv0tArtVAEE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/at.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nKBTuiEPcN5xzTZ+cJOpyvBVK6upLKH/VOuUp22FhTU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1555" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.ulf0mee0w8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001531393568" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ulf0mee0w8" + }, + { + "Name": "integrity", + "Value": "sha256-/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.ulf0mee0w8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1555" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ulf0mee0w8" + }, + { + "Name": "integrity", + "Value": "sha256-/gL07ATaFF2a8YGKcnV80bwY3SDHNetPimsQ9z7qi1c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/au.ulf0mee0w8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "652" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ulf0mee0w8" + }, + { + "Name": "integrity", + "Value": "sha256-y22xIY9RKWTPNU7voWF7SBCSp416m+MBAFAdl/lQDDg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/au.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.crr75ar4sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000581395349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "crr75ar4sv" + }, + { + "Name": "integrity", + "Value": "sha256-SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.crr75ar4sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10137" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "crr75ar4sv" + }, + { + "Name": "integrity", + "Value": "sha256-SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.crr75ar4sv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "crr75ar4sv" + }, + { + "Name": "integrity", + "Value": "sha256-kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000581395349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10137" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SMW3L1ZGCntAvf2D/Uf7akjqbQIKMC7ScW0sLYyZxKw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/aw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1719" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kvtQe5lnWBhCyjvc+3P/2mEMHn1s/fQghnMLQoNOBi8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003164556962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.sw0ge7zzzu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003164556962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sw0ge7zzzu" + }, + { + "Name": "integrity", + "Value": "sha256-ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.sw0ge7zzzu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sw0ge7zzzu" + }, + { + "Name": "integrity", + "Value": "sha256-ZF1WGWNVJI2v3fW7LPUamTr7KuoWQlNmr9nzprCLHa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ax.sw0ge7zzzu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sw0ge7zzzu" + }, + { + "Name": "integrity", + "Value": "sha256-Bhm7c3PtxVNvICRzHmfXCPU4CnZjhlbdwKslQMwVHE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ax.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "520" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.vafbwcu5da.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vafbwcu5da" + }, + { + "Name": "integrity", + "Value": "sha256-ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.vafbwcu5da.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "520" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vafbwcu5da" + }, + { + "Name": "integrity", + "Value": "sha256-ye0TWUtws0egct2XqFZe8yn4W5hz08Cn36mbi4gdoAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/az.vafbwcu5da.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vafbwcu5da" + }, + { + "Name": "integrity", + "Value": "sha256-FyDhijEx8iW0IfEAN/K2wmE9rMQfh1L9HfSodDd1scc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/az.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001712328767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.xw31c9xhbw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001712328767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xw31c9xhbw" + }, + { + "Name": "integrity", + "Value": "sha256-75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.xw31c9xhbw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xw31c9xhbw" + }, + { + "Name": "integrity", + "Value": "sha256-75W9ZnRnKt6lI93PE93HIs3C8nhQYpHYW70tzBtlCGU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ba.xw31c9xhbw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xw31c9xhbw" + }, + { + "Name": "integrity", + "Value": "sha256-QtXeulCLiWKsR2jp+ysA9WIWEE8ESR1KYG7Omrs1RjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ba.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.qbp1w4n2n2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbp1w4n2n2" + }, + { + "Name": "integrity", + "Value": "sha256-iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.qbp1w4n2n2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbp1w4n2n2" + }, + { + "Name": "integrity", + "Value": "sha256-iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.qbp1w4n2n2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbp1w4n2n2" + }, + { + "Name": "integrity", + "Value": "sha256-/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iikKcYnPDSSQoWyRB4EBZfr/G9+NmkxezgW020CppYo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/H+qhOkFEI/b4NBUtTEctLSXdWkisNOnPLMRgQN6U9A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.27tcstnob2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27tcstnob2" + }, + { + "Name": "integrity", + "Value": "sha256-MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.27tcstnob2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27tcstnob2" + }, + { + "Name": "integrity", + "Value": "sha256-MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.27tcstnob2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27tcstnob2" + }, + { + "Name": "integrity", + "Value": "sha256-SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MkGRcgorn/zN+zViyu2VD8kxmjxrTeHXCzl6in4cKTA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SIKerelYwmOsaqK+aNqttMOyeyr1wQYpF0LP6+gu/C8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.8qap1c0wio.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004608294931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "216" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qap1c0wio" + }, + { + "Name": "integrity", + "Value": "sha256-cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.8qap1c0wio.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qap1c0wio" + }, + { + "Name": "integrity", + "Value": "sha256-cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.8qap1c0wio.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "216" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qap1c0wio" + }, + { + "Name": "integrity", + "Value": "sha256-Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004608294931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "216" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "297" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cKyqqR9wtQ+6RTcPF3t7gbU6igm943ldOsdCWFbJaG0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/be.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "216" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xjaz0xww6c2mXGMK7MMv95xGLM7uA363qRMYkGr7Kzs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.1kqgz8erf0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003937007874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "253" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1kqgz8erf0" + }, + { + "Name": "integrity", + "Value": "sha256-ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.1kqgz8erf0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1kqgz8erf0" + }, + { + "Name": "integrity", + "Value": "sha256-ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.1kqgz8erf0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "253" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1kqgz8erf0" + }, + { + "Name": "integrity", + "Value": "sha256-bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003937007874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "253" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ca3EiniZR4cP/Vauw0bRbZGV/Qo5UUqYAGxbFHVajWk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "253" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bjnRShkHW502RdcYQrByYR5ttKG4cyR9rwo3Nn/Z5eM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.6wdwjhmp11.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6wdwjhmp11" + }, + { + "Name": "integrity", + "Value": "sha256-qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.6wdwjhmp11.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6wdwjhmp11" + }, + { + "Name": "integrity", + "Value": "sha256-qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.6wdwjhmp11.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6wdwjhmp11" + }, + { + "Name": "integrity", + "Value": "sha256-3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnroOcVQmLuRZgpn95KOtB982tt2j5oPA9ziKKk5ZvQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3NZWtFrEvZsFAxDS1NVIPBC0lGQ807LsfNvzpAn8cl8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.0nvh4udqi0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003521126761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nvh4udqi0" + }, + { + "Name": "integrity", + "Value": "sha256-bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.0nvh4udqi0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "526" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nvh4udqi0" + }, + { + "Name": "integrity", + "Value": "sha256-bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.0nvh4udqi0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nvh4udqi0" + }, + { + "Name": "integrity", + "Value": "sha256-W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003521126761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "526" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bMba2+A9WNoraPOhPu1EzO9d8IcIEo7g1MtMxI/c9UA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W5y9vosW65RBA6fEAq4jtaxBXEaLRPoARctz4kNLUps=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.nnam30c5a2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001984126984" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nnam30c5a2" + }, + { + "Name": "integrity", + "Value": "sha256-c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.nnam30c5a2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1089" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nnam30c5a2" + }, + { + "Name": "integrity", + "Value": "sha256-c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.nnam30c5a2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nnam30c5a2" + }, + { + "Name": "integrity", + "Value": "sha256-vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001984126984" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1089" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c8JqRoPOnPIbUAwefol4P0W1cHHmxDAje8vMnG1pXtk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "503" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vZIheRDp+z9oRKXLPSTizF+5FF8LEb1GWBbDsGo7H/I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.9ifq2ynx8j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003184713376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ifq2ynx8j" + }, + { + "Name": "integrity", + "Value": "sha256-AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.9ifq2ynx8j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "516" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ifq2ynx8j" + }, + { + "Name": "integrity", + "Value": "sha256-AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.9ifq2ynx8j.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ifq2ynx8j" + }, + { + "Name": "integrity", + "Value": "sha256-uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003184713376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "516" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AYsE5wvWyIclOf8tMbkq5bWkqNz8FYg99HwtfwOWFwY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "313" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uT1wwXVXHsAvKjZ3BQVxhiFBpNJlZfCnSF5GA2+BP7U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.5cw4j2csvh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cw4j2csvh" + }, + { + "Name": "integrity", + "Value": "sha256-tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.5cw4j2csvh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cw4j2csvh" + }, + { + "Name": "integrity", + "Value": "sha256-tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.5cw4j2csvh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5cw4j2csvh" + }, + { + "Name": "integrity", + "Value": "sha256-6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tXcmec2D04o3Wx9KBPJrBe0adLcsNtAbmIvDUHm+B9U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6MCgLXeBDoXmS/qrQp5/0FDzVRnQQJ8SpwWwdLA6Rbs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.qfalq4rzxn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000138159713" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfalq4rzxn" + }, + { + "Name": "integrity", + "Value": "sha256-6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.qfalq4rzxn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22667" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfalq4rzxn" + }, + { + "Name": "integrity", + "Value": "sha256-6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.qfalq4rzxn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qfalq4rzxn" + }, + { + "Name": "integrity", + "Value": "sha256-zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000138159713" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "22667" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6n2FD1r9ep/sXhtY/EOR3ucNC2lXQaP61Fd4N5BNryM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7237" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zXEle9JPJDZF+IiS+4HdPIzjNZa9xwESY3YfLvlF2b0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.qpaduj4rb6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166833500" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpaduj4rb6" + }, + { + "Name": "integrity", + "Value": "sha256-gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.qpaduj4rb6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14249" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpaduj4rb6" + }, + { + "Name": "integrity", + "Value": "sha256-gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.qpaduj4rb6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpaduj4rb6" + }, + { + "Name": "integrity", + "Value": "sha256-Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000166833500" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "14249" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gn7ryHwN3gWNVgvtNtuMz9LFAtONcILGZlx9WA7VVLk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5993" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jzj+WDY7oAvqWCSQ3aY2G+ng0HhGAmhqLRfnJCd76L0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.6dap1xeudi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035991938" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dap1xeudi" + }, + { + "Name": "integrity", + "Value": "sha256-uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.6dap1xeudi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "117738" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dap1xeudi" + }, + { + "Name": "integrity", + "Value": "sha256-uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.6dap1xeudi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dap1xeudi" + }, + { + "Name": "integrity", + "Value": "sha256-16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035991938" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "117738" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uiXe821JHW4v98U/NyHfSZl7pym6Cot04IgoLDZqmxg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27783" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16poyRvH/2NBvh5Ki5MPJilyXnoN+L3FprtQiMdJOsU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005988023952" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "166" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "229" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "166" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.tal2wmz7ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005988023952" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "166" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tal2wmz7ss" + }, + { + "Name": "integrity", + "Value": "sha256-VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.tal2wmz7ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "229" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tal2wmz7ss" + }, + { + "Name": "integrity", + "Value": "sha256-VQDfhR2PPmNKw8b75OhM2QZarWV/k6DFZGdKIznVSrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bq.tal2wmz7ss.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "166" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tal2wmz7ss" + }, + { + "Name": "integrity", + "Value": "sha256-dguWrIS7y1Gu1cmp0O4LqhdUByGQugjIs4JAer2LH/0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.demc06rl6h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000355745286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "demc06rl6h" + }, + { + "Name": "integrity", + "Value": "sha256-ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.demc06rl6h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8142" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "demc06rl6h" + }, + { + "Name": "integrity", + "Value": "sha256-ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.demc06rl6h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "demc06rl6h" + }, + { + "Name": "integrity", + "Value": "sha256-VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000355745286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8142" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZcQkRpMGn8RlcMGRk84yvlpt624wAdZH8vYK/LlxGoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/br.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VHxMcGlVQJ3wKxIqBE21q1Dixe5uK89UwgSBC6xqVdg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.rqfjjkmj2g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqfjjkmj2g" + }, + { + "Name": "integrity", + "Value": "sha256-jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.rqfjjkmj2g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqfjjkmj2g" + }, + { + "Name": "integrity", + "Value": "sha256-jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.rqfjjkmj2g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqfjjkmj2g" + }, + { + "Name": "integrity", + "Value": "sha256-rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jUYquZuJgdzjyQENnK6OlUImif2Pj6lY1SCopB296Eg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rqZxtbTOhptLMQCcKY0waerUmUzzVXQdlFy8PWadkIA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.3ur3j45wxv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000096348396" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ur3j45wxv" + }, + { + "Name": "integrity", + "Value": "sha256-VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.3ur3j45wxv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ur3j45wxv" + }, + { + "Name": "integrity", + "Value": "sha256-VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.3ur3j45wxv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ur3j45wxv" + }, + { + "Name": "integrity", + "Value": "sha256-iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000096348396" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "25316" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VX3bx3t1MhC9RNjJGeEqGwBwopJRPJ9NovQdxttD95s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iU6Q17c53Du+HgPp5v5NN+uxnFlgU7E5XUJ8sy7U6xI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.g6zl5w1b5t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002673796791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6zl5w1b5t" + }, + { + "Name": "integrity", + "Value": "sha256-WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.g6zl5w1b5t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6zl5w1b5t" + }, + { + "Name": "integrity", + "Value": "sha256-WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.g6zl5w1b5t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6zl5w1b5t" + }, + { + "Name": "integrity", + "Value": "sha256-F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002673796791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WBqpQXsZFN9vDa45FSp4I58vKzx9hqapo/IpnP+pxJc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F5Cn3FbSyWKRA7POiAdX9PdQhDl/SccOdKeV+/PxJDU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.pfhixszyps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005376344086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfhixszyps" + }, + { + "Name": "integrity", + "Value": "sha256-O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.pfhixszyps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfhixszyps" + }, + { + "Name": "integrity", + "Value": "sha256-O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.pfhixszyps.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfhixszyps" + }, + { + "Name": "integrity", + "Value": "sha256-6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005376344086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O3aOYA46ZRSI6Et55SVDwIOxUeN3sBaIDZP00/UgRK4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "185" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6pw1NbvDkgzaH529UctUxC8q0sKTUvPubincE4XOQ1s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.g3u1soz28s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000594530321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1681" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3u1soz28s" + }, + { + "Name": "integrity", + "Value": "sha256-nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.g3u1soz28s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5982" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3u1soz28s" + }, + { + "Name": "integrity", + "Value": "sha256-nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.g3u1soz28s.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1681" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3u1soz28s" + }, + { + "Name": "integrity", + "Value": "sha256-b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000594530321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1681" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5982" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nPqht0njilQWqdljaPexYZY0r8XFXNR8iHnjD6fgP/A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/by.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1681" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b71M2OOu7pf3Zy2uo44OGgsE8bKihYQ56zOmW1WxctQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.rkrbkmyhf5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000058910162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16974" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkrbkmyhf5" + }, + { + "Name": "integrity", + "Value": "sha256-W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.rkrbkmyhf5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "46572" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkrbkmyhf5" + }, + { + "Name": "integrity", + "Value": "sha256-W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.rkrbkmyhf5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16974" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rkrbkmyhf5" + }, + { + "Name": "integrity", + "Value": "sha256-VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000058910162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16974" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "46572" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W2wYD/WGKt0Lx1yQs8nIKFvNbEUGjKVVzds0rAYdfCU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/bz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16974" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VSkxcw2a/bYnFB4kCrP9NmENG0R058jCWODHOl1yphw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002237136465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "732" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.vy2fzynkmh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002237136465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy2fzynkmh" + }, + { + "Name": "integrity", + "Value": "sha256-OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.vy2fzynkmh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "732" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy2fzynkmh" + }, + { + "Name": "integrity", + "Value": "sha256-OQiZJnocLsXv7il7eTLsAjJuj40m7kr9F6ixXHitE+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ca.vy2fzynkmh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy2fzynkmh" + }, + { + "Name": "integrity", + "Value": "sha256-elSN5pUcwvfBvhGRKEowtDnlv1SH4oxNnJiCKUSMr2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ca.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.5kyfvat9c5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000720461095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kyfvat9c5" + }, + { + "Name": "integrity", + "Value": "sha256-tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.5kyfvat9c5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3142" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kyfvat9c5" + }, + { + "Name": "integrity", + "Value": "sha256-tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.5kyfvat9c5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kyfvat9c5" + }, + { + "Name": "integrity", + "Value": "sha256-psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000720461095" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3142" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tVP1zTfpblAu66nOqxrAdf1cuuw+DDrtN3c4l4s0xSA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-psOYG8V5Y6gFZiVWHgYmGU5jOGatz0/EA/krnqlP1/s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.p8mxlq5ad2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p8mxlq5ad2" + }, + { + "Name": "integrity", + "Value": "sha256-J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.p8mxlq5ad2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p8mxlq5ad2" + }, + { + "Name": "integrity", + "Value": "sha256-J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.p8mxlq5ad2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p8mxlq5ad2" + }, + { + "Name": "integrity", + "Value": "sha256-pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004081632653" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J2RqhViNawjuGpQgqhEBvvooEYe/SNgJLztdwa7q3DQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pmF736hTKfEakEJD2ZZ02mgkPZ+rkytZPws/xbYuPj0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.p45g5osnu8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p45g5osnu8" + }, + { + "Name": "integrity", + "Value": "sha256-+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.p45g5osnu8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "706" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p45g5osnu8" + }, + { + "Name": "integrity", + "Value": "sha256-+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.p45g5osnu8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p45g5osnu8" + }, + { + "Name": "integrity", + "Value": "sha256-xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "706" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+YJmfYLUCO0jo/s5AJvAloCTfryvLmEmBDkU5BWiDps=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xOJ80zKWHoKZAJXD4GJa0WPwQ83qmd93LWapQj4SQis=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.s0yubzxtgx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0yubzxtgx" + }, + { + "Name": "integrity", + "Value": "sha256-RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.s0yubzxtgx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0yubzxtgx" + }, + { + "Name": "integrity", + "Value": "sha256-RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.s0yubzxtgx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s0yubzxtgx" + }, + { + "Name": "integrity", + "Value": "sha256-NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003246753247" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "499" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RFEZogRzi8e5ntAZHW3GUK4T3DjjwmnYrS/0lXdCXgc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NW64IHg1x+TzL+EvgU2GfH/U44lK93s+/jYHGT8WBi0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.b5a2n97p5h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004464285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "223" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5a2n97p5h" + }, + { + "Name": "integrity", + "Value": "sha256-34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.b5a2n97p5h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "306" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5a2n97p5h" + }, + { + "Name": "integrity", + "Value": "sha256-34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.b5a2n97p5h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "223" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5a2n97p5h" + }, + { + "Name": "integrity", + "Value": "sha256-r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004464285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "223" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "306" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-34olVZM80ildvdTN/o6b5XlyH3Ts1xqLvP/XobKZqEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ch.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "223" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r2j/SysoNQU1nTFBLnrXqHvo8m/MMgnM4Xmu9G4VYbo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.g8zbpxy57h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004975124378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8zbpxy57h" + }, + { + "Name": "integrity", + "Value": "sha256-IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.g8zbpxy57h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "287" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8zbpxy57h" + }, + { + "Name": "integrity", + "Value": "sha256-IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.g8zbpxy57h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g8zbpxy57h" + }, + { + "Name": "integrity", + "Value": "sha256-49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004975124378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "287" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IMTa/aoTOopL8hiFlrJZRp2yk4M49jfbj8BTmxYgBiQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ci.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "200" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-49uIzX17IeYAuTyXhZdkNQ8bmAfFY8vWNKSXFkx0Ats=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.15sxffyysv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001022494888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sxffyysv" + }, + { + "Name": "integrity", + "Value": "sha256-S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.15sxffyysv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sxffyysv" + }, + { + "Name": "integrity", + "Value": "sha256-S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.15sxffyysv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sxffyysv" + }, + { + "Name": "integrity", + "Value": "sha256-bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001022494888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S0gb5um+tgm/FteoAg8hAvjRxyQ8B74O6SAqTZjW6oU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ck.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "977" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bTMKJtvigIxVV74Ngk22Xksq8sKWa26wO9uo/ApHaEA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.sokbwlvfao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002849002849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokbwlvfao" + }, + { + "Name": "integrity", + "Value": "sha256-fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.sokbwlvfao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokbwlvfao" + }, + { + "Name": "integrity", + "Value": "sha256-fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.sokbwlvfao.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokbwlvfao" + }, + { + "Name": "integrity", + "Value": "sha256-vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002849002849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIE+AvieDmghbzIiNi6w9dl3RygAJ1xcwS6i/9Ef0iA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vfKWwbSYeK+xDEQpCjiBeKvqGKVxBG0Jp3lT0EFCNas=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.fcxv5y6jcj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002923976608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fcxv5y6jcj" + }, + { + "Name": "integrity", + "Value": "sha256-j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.fcxv5y6jcj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fcxv5y6jcj" + }, + { + "Name": "integrity", + "Value": "sha256-j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.fcxv5y6jcj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fcxv5y6jcj" + }, + { + "Name": "integrity", + "Value": "sha256-T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002923976608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j8dxUbETksAi4ZX3oeLZiXu1PIOZ/JavOEKIcvVfwLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T5y2tjO7valVx/vo1obzPZvUJ8ayPYhizLmYWzBuvoQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.q1h200p9yv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q1h200p9yv" + }, + { + "Name": "integrity", + "Value": "sha256-Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.q1h200p9yv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q1h200p9yv" + }, + { + "Name": "integrity", + "Value": "sha256-Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.q1h200p9yv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q1h200p9yv" + }, + { + "Name": "integrity", + "Value": "sha256-7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002770083102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "812" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mm13iKw3PoCJmxz2spMd8fqT5Y0zMC/g46kDtd6F2sg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "360" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7Yw4XKsYcmwKQo/1ntmdLtEKEDAgZOfiWOIMcP/lq+s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.j1a4tjfzcf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1a4tjfzcf" + }, + { + "Name": "integrity", + "Value": "sha256-KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.j1a4tjfzcf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1a4tjfzcf" + }, + { + "Name": "integrity", + "Value": "sha256-KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.j1a4tjfzcf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j1a4tjfzcf" + }, + { + "Name": "integrity", + "Value": "sha256-b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "296" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KdsO1k6bqcHwSV4i8muf5taIwO8yCe5j70BlrEJpQD4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/co.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b0xLXKLB2/IqP3aO68avYB6GOPsL6aZICGTjHbnQ57Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.nde2cpet4e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nde2cpet4e" + }, + { + "Name": "integrity", + "Value": "sha256-tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.nde2cpet4e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nde2cpet4e" + }, + { + "Name": "integrity", + "Value": "sha256-tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.nde2cpet4e.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nde2cpet4e" + }, + { + "Name": "integrity", + "Value": "sha256-6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tZpkoMcHbGfiA6vvGm22vn7toEu3L+tHGjPezDAVPp8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6jWEPU8RyUN3ORTJ/RS7YjLirrWploqOvcrGUmVDzGI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.dfakosk4v5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfakosk4v5" + }, + { + "Name": "integrity", + "Value": "sha256-N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.dfakosk4v5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfakosk4v5" + }, + { + "Name": "integrity", + "Value": "sha256-N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.dfakosk4v5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfakosk4v5" + }, + { + "Name": "integrity", + "Value": "sha256-wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N0bXK5OLqjSZ9/Dj3Kj7dubX3KK7m5iIabVO5E+1leY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wEHGzQTrd4WkdZOVqGlgyoif6uM2inDMRGjFK/hClTA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.bw007z29le.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw007z29le" + }, + { + "Name": "integrity", + "Value": "sha256-dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.bw007z29le.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1428" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw007z29le" + }, + { + "Name": "integrity", + "Value": "sha256-dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.bw007z29le.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw007z29le" + }, + { + "Name": "integrity", + "Value": "sha256-U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1428" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dcg8M5uEiojJkzqhjz/btVFDiMwqzZolMg0lsUWEJEM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U0ojP1H4UpJJfnxsDgBlXWm3UMXQcztqn0AoFuGycN4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.z3q52x1pa2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z3q52x1pa2" + }, + { + "Name": "integrity", + "Value": "sha256-b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.z3q52x1pa2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "695" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z3q52x1pa2" + }, + { + "Name": "integrity", + "Value": "sha256-b8kbG1AYVDtPrJ3mpth9CXSZSzvFoVMGcpeVqLlfOys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cw.z3q52x1pa2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z3q52x1pa2" + }, + { + "Name": "integrity", + "Value": "sha256-oC2nDjuIhToYLt9UxlhVYVeEn4+An6AqhiTOevtt2YY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.o6pafbt9hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000871080139" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6pafbt9hk" + }, + { + "Name": "integrity", + "Value": "sha256-ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.o6pafbt9hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2470" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6pafbt9hk" + }, + { + "Name": "integrity", + "Value": "sha256-ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.o6pafbt9hk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o6pafbt9hk" + }, + { + "Name": "integrity", + "Value": "sha256-QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000871080139" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2470" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ANecn6PdQQ2kp5eonV/tC8783lXkJzK+NePolK3GwFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QHZIT50D/mgLQxUTu7TOB25E9XmJIpg1/1YXP5wYISw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.fz7urvstg5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000392003136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2550" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz7urvstg5" + }, + { + "Name": "integrity", + "Value": "sha256-61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.fz7urvstg5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5872" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz7urvstg5" + }, + { + "Name": "integrity", + "Value": "sha256-61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.fz7urvstg5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2550" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz7urvstg5" + }, + { + "Name": "integrity", + "Value": "sha256-06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000392003136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2550" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5872" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-61qKxPBWpWhUFUC11j1ibYB4+tpggCQd4xBbEyu1tlk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2550" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-06qcbEgPfaZguOt/yoLfCa05Ah8IpARhD1HiSxwcNno=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.ejk6evt42n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005714285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ejk6evt42n" + }, + { + "Name": "integrity", + "Value": "sha256-htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.ejk6evt42n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ejk6evt42n" + }, + { + "Name": "integrity", + "Value": "sha256-htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.ejk6evt42n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ejk6evt42n" + }, + { + "Name": "integrity", + "Value": "sha256-gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005714285714" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-htheE0+1vUCLeIcOXCR1mUXSUA95/tADnIHv8TxZOJs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/cz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "174" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gZdEmE6boVX4R7ZQahAhZg0l/pUbdSqjx78DOrRPQ/A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.iw24uqslw7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006097560976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw24uqslw7" + }, + { + "Name": "integrity", + "Value": "sha256-TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.iw24uqslw7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "218" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw24uqslw7" + }, + { + "Name": "integrity", + "Value": "sha256-TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.iw24uqslw7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iw24uqslw7" + }, + { + "Name": "integrity", + "Value": "sha256-F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006097560976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "218" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TpIamMdzxjLSCie5P2RsT4/htYcvkTolasz2SKS59N4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/de.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "163" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F5YLsU7+eAfMgcRjxJ6AiPfHe3mpkC65MWEEmpy+v4o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.juwgy90tlo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "juwgy90tlo" + }, + { + "Name": "integrity", + "Value": "sha256-tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.juwgy90tlo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "juwgy90tlo" + }, + { + "Name": "integrity", + "Value": "sha256-tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.juwgy90tlo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "juwgy90tlo" + }, + { + "Name": "integrity", + "Value": "sha256-fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tY+aTA2xvf+c2Pl8Ns6UkOWes4eK0OXjnPtxnGW+bsA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIWuGjGjWG1gU1uPIvvFvRavCMUCIKTY1VYFGScp9C4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.f5pzmrk1lz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005586592179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "178" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5pzmrk1lz" + }, + { + "Name": "integrity", + "Value": "sha256-EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.f5pzmrk1lz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5pzmrk1lz" + }, + { + "Name": "integrity", + "Value": "sha256-EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.f5pzmrk1lz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "178" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5pzmrk1lz" + }, + { + "Name": "integrity", + "Value": "sha256-I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005586592179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "178" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EwwpIwL3EH9rJHDvgLic9Ojlq2YTbufChFNmYYNgUmM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "178" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I8YRo5RVonZyIyZsnzoMz4qTS/OCROzKwzisaDLKOLw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.lbltqgrwg8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314465409" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3179" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbltqgrwg8" + }, + { + "Name": "integrity", + "Value": "sha256-MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.lbltqgrwg8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16127" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbltqgrwg8" + }, + { + "Name": "integrity", + "Value": "sha256-MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.lbltqgrwg8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3179" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lbltqgrwg8" + }, + { + "Name": "integrity", + "Value": "sha256-9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314465409" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3179" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "16127" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MVsYoG75BuoK6gbYmaTXZJqyhpqFAuxQLl1bwsaUqdA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3179" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9E96IXPqRj6MSd72MIjDkWxOmCR7+EFOjDxF0dH1l6s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.duzem58qgp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019081420" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzem58qgp" + }, + { + "Name": "integrity", + "Value": "sha256-9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.duzem58qgp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "400594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzem58qgp" + }, + { + "Name": "integrity", + "Value": "sha256-9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.duzem58qgp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "duzem58qgp" + }, + { + "Name": "integrity", + "Value": "sha256-aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019081420" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "400594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9baSM3S4n5VKf5RRgwZjBDJpYxT+XV42rCuS0vonQg8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/do.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52406" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aSlO6wMgCNmKAuNo+BOh1NHsvVe5wfvPk+3CmHaIT7E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.6hlwvd79rk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6hlwvd79rk" + }, + { + "Name": "integrity", + "Value": "sha256-RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.6hlwvd79rk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6hlwvd79rk" + }, + { + "Name": "integrity", + "Value": "sha256-RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.6hlwvd79rk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6hlwvd79rk" + }, + { + "Name": "integrity", + "Value": "sha256-7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RkgvugUH6T63G4KSMld+qW5gDEw6lO7fQMpwAaekhWI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/dz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7rgogJzV3rJZM4wB2nmWhN37e004vCBVhkcdEiKLBWg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.59kyuvmtqo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000141003948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7091" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59kyuvmtqo" + }, + { + "Name": "integrity", + "Value": "sha256-9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.59kyuvmtqo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "29458" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59kyuvmtqo" + }, + { + "Name": "integrity", + "Value": "sha256-9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.59kyuvmtqo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7091" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59kyuvmtqo" + }, + { + "Name": "integrity", + "Value": "sha256-pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000141003948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7091" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "29458" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9wpauQV9AGmrx8pxkl+GCWc2qoNAqN6sa3ufpf8Crcw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ec.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7091" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pdWLmYIrarGC3kUPuuXUV48XNjIrozc6IYm2ieJONVg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.1ewx906crc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004385964912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ewx906crc" + }, + { + "Name": "integrity", + "Value": "sha256-x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.1ewx906crc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ewx906crc" + }, + { + "Name": "integrity", + "Value": "sha256-x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.1ewx906crc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1ewx906crc" + }, + { + "Name": "integrity", + "Value": "sha256-/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004385964912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x9TQCcfY1OLNJs9b70sWu8zFYfnmo6ldeFMMT36rbZA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ee.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/laEVD9JfDtutA/iYiJ/ER8LFjRMcyi/QM/ddUd4zLE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.6v490bvzxn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000253485425" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v490bvzxn" + }, + { + "Name": "integrity", + "Value": "sha256-HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.6v490bvzxn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9937" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v490bvzxn" + }, + { + "Name": "integrity", + "Value": "sha256-HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.6v490bvzxn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6v490bvzxn" + }, + { + "Name": "integrity", + "Value": "sha256-QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000253485425" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9937" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HsOh6X2DgMuyKyuR5aWqTkliFyMnGvNWwyNPd87qOKg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QE2DNCRvnx3bx+TEi4BYR0YImSfkox9TMIzdc0i4TG0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.hr3m1a727q.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002016129032" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr3m1a727q" + }, + { + "Name": "integrity", + "Value": "sha256-c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.hr3m1a727q.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "888" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr3m1a727q" + }, + { + "Name": "integrity", + "Value": "sha256-c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.hr3m1a727q.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hr3m1a727q" + }, + { + "Name": "integrity", + "Value": "sha256-gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002016129032" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "888" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c0pn1/w1tOSHccrNF8pAFEUSwVn8sFtmq4DgYWm5npE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "495" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gQNyi0mX+6QS+rcKOWQSwViN+lT4NOMWo0GuwP3NTt8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645994832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.zlpeyjz20i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645994832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zlpeyjz20i" + }, + { + "Name": "integrity", + "Value": "sha256-2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.zlpeyjz20i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zlpeyjz20i" + }, + { + "Name": "integrity", + "Value": "sha256-2UiATdb4NJvt7rQIFs+zAUrzWVCcd7qSHGauJbBkPC8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/er.zlpeyjz20i.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1547" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zlpeyjz20i" + }, + { + "Name": "integrity", + "Value": "sha256-8Um+vCwbs0vL0P0aO4RPH2xIQ26SuOSiXC61a/CRxEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/er.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.9zxpv1hmrc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9zxpv1hmrc" + }, + { + "Name": "integrity", + "Value": "sha256-RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.9zxpv1hmrc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "262" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9zxpv1hmrc" + }, + { + "Name": "integrity", + "Value": "sha256-RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.9zxpv1hmrc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9zxpv1hmrc" + }, + { + "Name": "integrity", + "Value": "sha256-7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "262" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RSsMi7oVBt4oZto6ovayU6etD/b/wgLJk1460DJ2AQY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7umoR4vVFe3LElU6IRhIQvJkc4+J/Ayno0QxjKG8i/Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.748vxdu5js.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000207039337" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4829" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "748vxdu5js" + }, + { + "Name": "integrity", + "Value": "sha256-KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.748vxdu5js.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "748vxdu5js" + }, + { + "Name": "integrity", + "Value": "sha256-KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.748vxdu5js.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4829" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "748vxdu5js" + }, + { + "Name": "integrity", + "Value": "sha256-DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000207039337" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4829" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "28449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KZBzWjuVzO3gBGD+o6E5zXgCwqoblcGeIOHHcZMwqt4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4829" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DEgRa32SH4dsU9CvSWqSzO8ma4TCcfkFWfLsNDJmlYA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.fgl71h10z1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060942166" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgl71h10z1" + }, + { + "Name": "integrity", + "Value": "sha256-oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.fgl71h10z1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "91363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgl71h10z1" + }, + { + "Name": "integrity", + "Value": "sha256-oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.fgl71h10z1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fgl71h10z1" + }, + { + "Name": "integrity", + "Value": "sha256-fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000060942166" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "91363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oQKm83dtsHmJVkyiM1Sttdj7LieYMJsRYzbVsJ8Z2MI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/es.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16408" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fNv4cd0nZhV83LLsBksQ2Q41rKQEb1RxWGv/wOjxDV0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.g7h9xvad1p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001408450704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7h9xvad1p" + }, + { + "Name": "integrity", + "Value": "sha256-XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.g7h9xvad1p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7h9xvad1p" + }, + { + "Name": "integrity", + "Value": "sha256-XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.g7h9xvad1p.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7h9xvad1p" + }, + { + "Name": "integrity", + "Value": "sha256-lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001408450704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XDwzoLxLHIA4XTN+6fiNwXzNExrDsQu8k0IPFTfvP8k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/et.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lydUNIbu6xhmfs20PEtdc+ty1xKiYUHWn49iamkvz9k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.ftg2n079cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002493765586" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftg2n079cl" + }, + { + "Name": "integrity", + "Value": "sha256-XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.ftg2n079cl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftg2n079cl" + }, + { + "Name": "integrity", + "Value": "sha256-XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.ftg2n079cl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftg2n079cl" + }, + { + "Name": "integrity", + "Value": "sha256-B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002493765586" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XReHehKzUF6g+UxHnQKfX5QeG3Ki20EmxuGtoxYjLnw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/eu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "400" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B9HTbnBfwjLVWCfQEhYGm/lr2d61YIzhIGqmUFQdsY4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.bcsphud18u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcsphud18u" + }, + { + "Name": "integrity", + "Value": "sha256-u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.bcsphud18u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcsphud18u" + }, + { + "Name": "integrity", + "Value": "sha256-u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.bcsphud18u.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcsphud18u" + }, + { + "Name": "integrity", + "Value": "sha256-xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u1QHDw+fUvZQaso7H0EjwDP5RxNCXe8WqJ/DheUoRA4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xYMioyd0bedpDFmlORkYYJTkrQGVSposDO9Dgr/mpNo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.53rsp7rg5g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000099581757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10041" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=\"" + }, + { + "Name": "ETag", + "Value": "W/\"36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "53rsp7rg5g" + }, + { + "Name": "integrity", + "Value": "sha256-36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.53rsp7rg5g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "53rsp7rg5g" + }, + { + "Name": "integrity", + "Value": "sha256-36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.53rsp7rg5g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10041" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "53rsp7rg5g" + }, + { + "Name": "integrity", + "Value": "sha256-NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000099581757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10041" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=\"" + }, + { + "Name": "ETag", + "Value": "W/\"36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "27359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-36IA3KZ4jd7d3iXP7m0dnVeEE2or8Drh0d7dmKMySKs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10041" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NxISFIaPIb/33OOs2Bs4BnLtrVU56EUV6mNMJFIyP60=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.9gf7ubpr6s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098990299" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gf7ubpr6s" + }, + { + "Name": "integrity", + "Value": "sha256-B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.9gf7ubpr6s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32063" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gf7ubpr6s" + }, + { + "Name": "integrity", + "Value": "sha256-B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.9gf7ubpr6s.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9gf7ubpr6s" + }, + { + "Name": "integrity", + "Value": "sha256-BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000098990299" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32063" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B3wVvQzXyzSETCEh+hMzQDEu2ZjDjWQvWB47wpUC6xI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10101" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BN8fB6kCNxkR1tFYHfhV+cury1PcwewvbIDhoWaBagM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.02xabk1784.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02xabk1784" + }, + { + "Name": "integrity", + "Value": "sha256-2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.02xabk1784.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02xabk1784" + }, + { + "Name": "integrity", + "Value": "sha256-2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.02xabk1784.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02xabk1784" + }, + { + "Name": "integrity", + "Value": "sha256-/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FCxf47esO5uY7dbokiyK+rGNmX4ItVJd5EXE85tUi4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/tO1zQ0Amd/FUZCBSAQTcilUQnTL86mfBne9IILrvgA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002747252747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "582" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.ylena9ndfg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002747252747" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylena9ndfg" + }, + { + "Name": "integrity", + "Value": "sha256-tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.ylena9ndfg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "582" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylena9ndfg" + }, + { + "Name": "integrity", + "Value": "sha256-tmdT9vYaQ+xaPUm2UrX4VCm6GzJyr/xH26ZLnkKG3DY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fo.ylena9ndfg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylena9ndfg" + }, + { + "Name": "integrity", + "Value": "sha256-4VJQcrgvODjcoGW4Bm91wHBeZTgQ+Ewf3EEQCKnrBBQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.ccpwzsk3z4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccpwzsk3z4" + }, + { + "Name": "integrity", + "Value": "sha256-tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.ccpwzsk3z4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccpwzsk3z4" + }, + { + "Name": "integrity", + "Value": "sha256-tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.ccpwzsk3z4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ccpwzsk3z4" + }, + { + "Name": "integrity", + "Value": "sha256-R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tMQijNHgrFDmeb7SeASucMnbSnHovSODcRgptYOizng=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/fr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R5M+QPkmyliwsCZcV0tMhJOTgcd+yorv7UnbzsCMW1M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.z9gx4mpqke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9gx4mpqke" + }, + { + "Name": "integrity", + "Value": "sha256-p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.z9gx4mpqke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9gx4mpqke" + }, + { + "Name": "integrity", + "Value": "sha256-p3w/00/cwp0+GF01gQcOH8QKe/ElxtC4YS7IF4uNdzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ga.z9gx4mpqke.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9gx4mpqke" + }, + { + "Name": "integrity", + "Value": "sha256-iEj32vwVh08TOtaTMMmK2xFsZhytll9E3EAXbffWRNE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ga.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.irwh2vasa2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005494505495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "irwh2vasa2" + }, + { + "Name": "integrity", + "Value": "sha256-4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.irwh2vasa2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "irwh2vasa2" + }, + { + "Name": "integrity", + "Value": "sha256-4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.irwh2vasa2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "irwh2vasa2" + }, + { + "Name": "integrity", + "Value": "sha256-C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005494505495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4oGOOZ5/9RDjlBpRlJk62Ask9asGjZroWD82l8kdosc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "181" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1H7OlF2DJ1MIf0i8Xsyp3xe2RVMj+fBa7sr+nHJ0Xk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.59v2lapkxq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000146886016" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6807" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59v2lapkxq" + }, + { + "Name": "integrity", + "Value": "sha256-R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.59v2lapkxq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59v2lapkxq" + }, + { + "Name": "integrity", + "Value": "sha256-R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.59v2lapkxq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6807" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "59v2lapkxq" + }, + { + "Name": "integrity", + "Value": "sha256-lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000146886016" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6807" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "25193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R8j6Yv83aCnIydewy2gzt2eBgZEys+C3/ButlU3M1bM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6807" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lTalg5IYqmGfG3XnuHwcz+vKzZ68JAS7+9hvLfGet+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.0ssy4gelxa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ssy4gelxa" + }, + { + "Name": "integrity", + "Value": "sha256-0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.0ssy4gelxa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ssy4gelxa" + }, + { + "Name": "integrity", + "Value": "sha256-0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.0ssy4gelxa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ssy4gelxa" + }, + { + "Name": "integrity", + "Value": "sha256-j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005000000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "235" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0FX/fwz7YkjAMHcgp5zrPiz5gH8nFoTJRxbQiBaPuy4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "199" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j5qmp6YqZfXjQ+wV4+rI43gziNqqU/8Bqk7V7LCs+R4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.mvse2ws5ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236239074" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4232" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvse2ws5ls" + }, + { + "Name": "integrity", + "Value": "sha256-skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.mvse2ws5ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvse2ws5ls" + }, + { + "Name": "integrity", + "Value": "sha256-skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.mvse2ws5ls.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4232" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvse2ws5ls" + }, + { + "Name": "integrity", + "Value": "sha256-tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236239074" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4232" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9170" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-skuEeeAHLj0kvxuynIqyG8HeZ7iE33IIl0SEGekA76w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4232" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tp4CgJkBCh3jm0QF9hEou2K7K9IIC3bfTqtTVr/JTLg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.kgtktgxk9p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kgtktgxk9p" + }, + { + "Name": "integrity", + "Value": "sha256-JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.kgtktgxk9p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "545" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kgtktgxk9p" + }, + { + "Name": "integrity", + "Value": "sha256-JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.kgtktgxk9p.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kgtktgxk9p" + }, + { + "Name": "integrity", + "Value": "sha256-Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "545" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JF9bP8LsjQ1RgWLBjkBXkKC4AkKaBNOY47OJuu7gwpI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z5wFbhL/h8uNnoPZgwz1sXx+/o037ciR9zEwzratxUA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.16tkmizggm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001697792869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16tkmizggm" + }, + { + "Name": "integrity", + "Value": "sha256-qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.16tkmizggm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1708" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16tkmizggm" + }, + { + "Name": "integrity", + "Value": "sha256-qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.16tkmizggm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16tkmizggm" + }, + { + "Name": "integrity", + "Value": "sha256-hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001697792869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1708" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qV5NKHILfeRJ29Izx5QVrDQ0VbO+Y20DZvf14T4yORY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hmNyhIDUZwCXwcy8acHqwE0r5W6egzUcMQbf723uGko=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.9d8cb2kydt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002617801047" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9d8cb2kydt" + }, + { + "Name": "integrity", + "Value": "sha256-XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.9d8cb2kydt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9d8cb2kydt" + }, + { + "Name": "integrity", + "Value": "sha256-XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.9d8cb2kydt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9d8cb2kydt" + }, + { + "Name": "integrity", + "Value": "sha256-KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002617801047" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1403" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XahKD4e3BwkP721YptoqdZGRRLG23Us9/sPGmTmbgZE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ge.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KklS9gpGKFrKZyFBJcvPRh/0gJ7hlWAYZcmnCf/pSXI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.0zs4lrruqt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0zs4lrruqt" + }, + { + "Name": "integrity", + "Value": "sha256-VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.0zs4lrruqt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0zs4lrruqt" + }, + { + "Name": "integrity", + "Value": "sha256-VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.0zs4lrruqt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0zs4lrruqt" + }, + { + "Name": "integrity", + "Value": "sha256-BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOOiPcMq0byZIPKc3QRczcWyZJjnK0EWuk9Ysqsctcw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BjB7P5QsnyxsCI4JwmoM/Lm3X8vR2q2N7SdT/gwIMFk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.ovqxkizuq6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ovqxkizuq6" + }, + { + "Name": "integrity", + "Value": "sha256-VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.ovqxkizuq6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ovqxkizuq6" + }, + { + "Name": "integrity", + "Value": "sha256-VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.ovqxkizuq6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ovqxkizuq6" + }, + { + "Name": "integrity", + "Value": "sha256-X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003389830508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VNK0Fiib8eccdaoHVGudeHXT9LrxqXeQHx4W/RElros=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4+RmHjX8qdKJ6Hdu/RKlT2MvEZgLmZupS3/+L4Vbw4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "287" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.x9xe267ewh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9xe267ewh" + }, + { + "Name": "integrity", + "Value": "sha256-9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.x9xe267ewh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "287" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9xe267ewh" + }, + { + "Name": "integrity", + "Value": "sha256-9akCsENhVR5HQqaxEVwM/2/PN3Wk6li2ye7vRDrgRQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gh.x9xe267ewh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x9xe267ewh" + }, + { + "Name": "integrity", + "Value": "sha256-Fb3WsSsDBT+GU10H/8vZetJXiwUPvjHyZ7WNuW9mc50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.q8jrh8nsul.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000736919676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1356" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8jrh8nsul" + }, + { + "Name": "integrity", + "Value": "sha256-1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.q8jrh8nsul.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2970" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8jrh8nsul" + }, + { + "Name": "integrity", + "Value": "sha256-1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.q8jrh8nsul.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1356" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q8jrh8nsul" + }, + { + "Name": "integrity", + "Value": "sha256-eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000736919676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1356" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2970" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1iR4Urd9IWqosyXOCJEErrGt6hyEX1+6X0jpz5pdnsg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1356" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eHcSekR6TpVdADVRaPoCTn4x86Kk13x4GaZnJiduZes=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.lta0aev46t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lta0aev46t" + }, + { + "Name": "integrity", + "Value": "sha256-yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.lta0aev46t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lta0aev46t" + }, + { + "Name": "integrity", + "Value": "sha256-yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.lta0aev46t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lta0aev46t" + }, + { + "Name": "integrity", + "Value": "sha256-DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005617977528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yWjbqiflox1w8ox+8aNlGjasWB5/RHljmJY9WfjiP9s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "177" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DpBLsQQ8JpTNSfv7Xll31wLe17okKqEKoM4Lh4sZtnI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.3tntkhybdo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tntkhybdo" + }, + { + "Name": "integrity", + "Value": "sha256-OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.3tntkhybdo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tntkhybdo" + }, + { + "Name": "integrity", + "Value": "sha256-OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.3tntkhybdo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tntkhybdo" + }, + { + "Name": "integrity", + "Value": "sha256-yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003134796238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OYrrucuU06/pIsWCZnRpszv66ai/d/ojTY0MZDxTGyI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yDnzR2SVd1Whbt2KsPFawwkR3sWWPhn11bEn2qsYVKk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.4ol0alivi0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ol0alivi0" + }, + { + "Name": "integrity", + "Value": "sha256-TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.4ol0alivi0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ol0alivi0" + }, + { + "Name": "integrity", + "Value": "sha256-TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.4ol0alivi0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ol0alivi0" + }, + { + "Name": "integrity", + "Value": "sha256-g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "302" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TPQEO4qallKDbz3DxcoRuZ4OWK5OsSvIJvrA3IdjreU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g7D6C33BsujsXN0+tfOE5TToC0FKYLXLme732tvue28=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.l8ur4txy0b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8ur4txy0b" + }, + { + "Name": "integrity", + "Value": "sha256-1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.l8ur4txy0b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8ur4txy0b" + }, + { + "Name": "integrity", + "Value": "sha256-1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.l8ur4txy0b.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8ur4txy0b" + }, + { + "Name": "integrity", + "Value": "sha256-iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1XmgKJ+pVbs5zDeKa3vNcsXXKxweYu1QhrKq1TLG6rU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iZI/HGLuLOGYcY7K2GF48adr0sNbPb3S20PvLz1M9lo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.bbscocwefz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470809793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbscocwefz" + }, + { + "Name": "integrity", + "Value": "sha256-qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.bbscocwefz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbscocwefz" + }, + { + "Name": "integrity", + "Value": "sha256-qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.bbscocwefz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bbscocwefz" + }, + { + "Name": "integrity", + "Value": "sha256-U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470809793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5205" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qZ1r03qd/P2VS6MQ5U82Z9YCFmJiyMVy5n5Qn92F6mU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U4aRUE3mNYJd3rqv3q8EO93wUzNzYzDhgIbzSXbBKqk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.3xicp8o417.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3xicp8o417" + }, + { + "Name": "integrity", + "Value": "sha256-x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.3xicp8o417.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1112" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3xicp8o417" + }, + { + "Name": "integrity", + "Value": "sha256-x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.3xicp8o417.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3xicp8o417" + }, + { + "Name": "integrity", + "Value": "sha256-YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1112" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x0OuIyU0l6dLtStljjU26CC55oqFSFl0tmsn9auZbPY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YOIy9X3POdwB7UJHwxp2hUDM1+VKdHOXpmlImNNOS0c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.42trfb04s3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000092191389" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "42trfb04s3" + }, + { + "Name": "integrity", + "Value": "sha256-JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.42trfb04s3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34769" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "42trfb04s3" + }, + { + "Name": "integrity", + "Value": "sha256-JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.42trfb04s3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "42trfb04s3" + }, + { + "Name": "integrity", + "Value": "sha256-1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000092191389" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "34769" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JLllB1JT2Mjg0NUXekwypl7Xepm8u8/DFgPwO8vF3Ms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1F+PzEBAgunJCAJjvefLND2ywuKbxX0OkS/T+7vxesM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.oczic650bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074985003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oczic650bm" + }, + { + "Name": "integrity", + "Value": "sha256-eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.oczic650bm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oczic650bm" + }, + { + "Name": "integrity", + "Value": "sha256-eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.oczic650bm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oczic650bm" + }, + { + "Name": "integrity", + "Value": "sha256-jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074985003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "37459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDcPhT1WH/MkTdV6jlJ7fxPq+whJp8/n0Kf6DrxqVW8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jXOY1pjvRT1OCcMvI6fw0ayMvRXmtJFIOGWlKmdP/b8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.9bbfmbkuz4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000579038796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1726" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bbfmbkuz4" + }, + { + "Name": "integrity", + "Value": "sha256-+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.9bbfmbkuz4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4879" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bbfmbkuz4" + }, + { + "Name": "integrity", + "Value": "sha256-+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.9bbfmbkuz4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1726" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bbfmbkuz4" + }, + { + "Name": "integrity", + "Value": "sha256-zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000579038796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1726" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4879" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+3aQE66wRYK0iIMg9AtZM+8IXWzHlmzGGUrQIVQ9zoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1726" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zRMusTo5YGTFWVJk9b9lzywdVHjw/7bYYvUcK5BdCBY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003086419753" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "826" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.vslgagabon.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003086419753" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vslgagabon" + }, + { + "Name": "integrity", + "Value": "sha256-oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.vslgagabon.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "826" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vslgagabon" + }, + { + "Name": "integrity", + "Value": "sha256-oUMiS5RKjgGEMEFYBGicWNQtFcSXQR927UJC+wxxnDY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gw.vslgagabon.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "323" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vslgagabon" + }, + { + "Name": "integrity", + "Value": "sha256-xu3WlWUK0bM3i/EckJcbYdRqt4raov+aI72KwIGJ4H0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.579aqp2fhy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003344481605" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "579aqp2fhy" + }, + { + "Name": "integrity", + "Value": "sha256-EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.579aqp2fhy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "579aqp2fhy" + }, + { + "Name": "integrity", + "Value": "sha256-EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.579aqp2fhy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "579aqp2fhy" + }, + { + "Name": "integrity", + "Value": "sha256-WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003344481605" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EYv4xqwWmE0edCEQmQNjeXtRaAjBqxRcCo+xAKeNY5s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/gy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "298" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WLIjHhdaO/80Zc+ElGRA3/fi8yKaJvEdiKh6oxfQsvE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.51ieojlrs7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000777604977" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "51ieojlrs7" + }, + { + "Name": "integrity", + "Value": "sha256-N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.51ieojlrs7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "51ieojlrs7" + }, + { + "Name": "integrity", + "Value": "sha256-N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.51ieojlrs7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "51ieojlrs7" + }, + { + "Name": "integrity", + "Value": "sha256-3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000777604977" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1l/sn4GfOTRjexbBDwOQOQFhkut5j6iJ08tpNp07lU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3oQuCPzq74SsQYsErQbreybj/jk8z4qfLOBSou2jwuo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.309gxuv9q8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "309gxuv9q8" + }, + { + "Name": "integrity", + "Value": "sha256-bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.309gxuv9q8.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "309gxuv9q8" + }, + { + "Name": "integrity", + "Value": "sha256-bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.309gxuv9q8.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "309gxuv9q8" + }, + { + "Name": "integrity", + "Value": "sha256-xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1333" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bUV6LZgZXeeU/Yumfhnr1DIbpibZRfliuxhJ2YeW4Dk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xJRYp0w8wuNEJGCoQcRh1j3ezryaFetfyD1jOUNZiwg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.jbtdn0ifj0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbtdn0ifj0" + }, + { + "Name": "integrity", + "Value": "sha256-UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.jbtdn0ifj0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1130" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbtdn0ifj0" + }, + { + "Name": "integrity", + "Value": "sha256-UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.jbtdn0ifj0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbtdn0ifj0" + }, + { + "Name": "integrity", + "Value": "sha256-Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1130" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UdMA6PziL4KNXv/UzSfOH89UH80HUC3j2QgSO1HL+cE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oj3cutiDWVnx5zkCjFgL5lPIDPlP8AVof1kILbvFN7M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.3h77hjhzri.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062189055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16079" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3h77hjhzri" + }, + { + "Name": "integrity", + "Value": "sha256-aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.3h77hjhzri.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "40673" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3h77hjhzri" + }, + { + "Name": "integrity", + "Value": "sha256-aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.3h77hjhzri.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16079" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3h77hjhzri" + }, + { + "Name": "integrity", + "Value": "sha256-3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062189055" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16079" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "40673" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aTFnKTBsakHDc27fEOynR1H5ipZZ6BaszTsmTn6wGjk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16079" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Zba0JYQFdlX3Mlvxs0ALN7V+AmSm9X70Ki1rRXVD8c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.o2ck51s9cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000185288123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5396" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2ck51s9cm" + }, + { + "Name": "integrity", + "Value": "sha256-4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.o2ck51s9cm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15121" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2ck51s9cm" + }, + { + "Name": "integrity", + "Value": "sha256-4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.o2ck51s9cm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5396" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o2ck51s9cm" + }, + { + "Name": "integrity", + "Value": "sha256-KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000185288123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5396" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15121" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Lz8hl+K3XCPu40+7rvnsa6WUDUX6UuGToC9gkLZvow=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ht.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5396" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KUgTNdVn8wm7JA2HK3pi4bq3jPYgRoCIWbFW5HTuJQc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.klw7g97ojv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005181347150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klw7g97ojv" + }, + { + "Name": "integrity", + "Value": "sha256-OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.klw7g97ojv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klw7g97ojv" + }, + { + "Name": "integrity", + "Value": "sha256-OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.klw7g97ojv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klw7g97ojv" + }, + { + "Name": "integrity", + "Value": "sha256-eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005181347150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "281" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OBsiH/wlVpzKfVZyUEHwiSyCHBQ19qckPXlzL1V0va0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/hu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "192" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDtZZ0MvIF8WEqRZzHvPEiscfRkU0BWS/SoWnucjLBY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005208333333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.u6mebfkttz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005208333333" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6mebfkttz" + }, + { + "Name": "integrity", + "Value": "sha256-1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.u6mebfkttz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6mebfkttz" + }, + { + "Name": "integrity", + "Value": "sha256-1m5Hnscs+dsj7RXEMUCZ9SRA5q5yIehZAImnSTJCrv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/id.u6mebfkttz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "191" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u6mebfkttz" + }, + { + "Name": "integrity", + "Value": "sha256-mBIw8+J4cJ8Fd2OCHt3tYWBsXKyhmACjsINEkVoGiuc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/id.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.ocilolz24g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ocilolz24g" + }, + { + "Name": "integrity", + "Value": "sha256-KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.ocilolz24g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ocilolz24g" + }, + { + "Name": "integrity", + "Value": "sha256-KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.ocilolz24g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ocilolz24g" + }, + { + "Name": "integrity", + "Value": "sha256-24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KIyVPP1yXjoffCEbHNWXFZe/MDc6YpNnl77cWUoo0Jg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ie.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24T5DQRhFr9rEJe0nwMIHNTLR9cxI9lAjz8zvYOTFwg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.9y42pva64d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001988071571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9y42pva64d" + }, + { + "Name": "integrity", + "Value": "sha256-kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.9y42pva64d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "915" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9y42pva64d" + }, + { + "Name": "integrity", + "Value": "sha256-kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.9y42pva64d.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9y42pva64d" + }, + { + "Name": "integrity", + "Value": "sha256-cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001988071571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "915" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kTowD8ZOrMN7VK8IzjSexn6jjEam7Oa5XFpuxTQuED0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/il.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cdPCHcW2N7XTVw616tlmPzD6GqcjtVzu8hdamOT+bY8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000260484501" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3838" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9906" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3838" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.t46kz3ddg4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000260484501" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3838" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t46kz3ddg4" + }, + { + "Name": "integrity", + "Value": "sha256-86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.t46kz3ddg4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9906" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t46kz3ddg4" + }, + { + "Name": "integrity", + "Value": "sha256-86SDuoWCUNGgfdG2DRxcDKzkha0dc2Rqzsxio8OqU6c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/im.t46kz3ddg4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3838" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t46kz3ddg4" + }, + { + "Name": "integrity", + "Value": "sha256-U5NAavoIe46xSGKcLME2guAfQwg/2k8OEdpePykdn7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/im.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1099" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.w0oulcyfnt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0oulcyfnt" + }, + { + "Name": "integrity", + "Value": "sha256-IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.w0oulcyfnt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1099" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0oulcyfnt" + }, + { + "Name": "integrity", + "Value": "sha256-IJpQ1BrRffJHLTa8l7fHMZA1X752yH0RsDHV5gu7IyQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/in.w0oulcyfnt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0oulcyfnt" + }, + { + "Name": "integrity", + "Value": "sha256-NLrt7k48E8nUZGjK7NL1D/TK/yvtQBXh0yiZP89QVjs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/in.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.0ep24bqp9j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000281690141" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3549" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ep24bqp9j" + }, + { + "Name": "integrity", + "Value": "sha256-CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.0ep24bqp9j.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27479" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ep24bqp9j" + }, + { + "Name": "integrity", + "Value": "sha256-CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.0ep24bqp9j.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3549" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0ep24bqp9j" + }, + { + "Name": "integrity", + "Value": "sha256-qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000281690141" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3549" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "27479" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CF2u56X9pYwEKs/91BHnNg3SCapQ7cvaRk4Rim9zTDs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/io.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3549" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEnlhO3nj02hLkrbYwySbFiCVEPU60m44qGqaPU9f1k=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.7ns3deaolt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001272264631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ns3deaolt" + }, + { + "Name": "integrity", + "Value": "sha256-PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.7ns3deaolt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ns3deaolt" + }, + { + "Name": "integrity", + "Value": "sha256-PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.7ns3deaolt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ns3deaolt" + }, + { + "Name": "integrity", + "Value": "sha256-xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001272264631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PYdV79QByP3OwplpTp+vZHu9eJYAHMW0vlzaDn4Qx7w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/iq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xphbqewUTsdc7Y8o77IvN6riKBd2iYpUXUQ2yTzn1fI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.iwi53vq2u1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000441111601" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwi53vq2u1" + }, + { + "Name": "integrity", + "Value": "sha256-8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.iwi53vq2u1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15670" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwi53vq2u1" + }, + { + "Name": "integrity", + "Value": "sha256-8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.iwi53vq2u1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iwi53vq2u1" + }, + { + "Name": "integrity", + "Value": "sha256-t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000441111601" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15670" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8s2g3z7BNBNo8pavVPqF7JDcFnildAVbr5RPWqpsEgQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ir.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t0UzD3VwA9NNwH3rpZYsEDJEfs7HAlHlmPO77FWKafc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.hoq529jeeb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003095975232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoq529jeeb" + }, + { + "Name": "integrity", + "Value": "sha256-rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.hoq529jeeb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoq529jeeb" + }, + { + "Name": "integrity", + "Value": "sha256-rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.hoq529jeeb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoq529jeeb" + }, + { + "Name": "integrity", + "Value": "sha256-SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003095975232" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "536" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rzNpIsmLkrr/8bjj/8so70EcRcxILhVLo26conAcRcE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/is.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SC6zl4vT//rVHI7qvrZ2L3qZqtvCrROSMFOrUcHxsjc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.2hws4x3f71.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004672897196" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "213" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hws4x3f71" + }, + { + "Name": "integrity", + "Value": "sha256-ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.2hws4x3f71.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hws4x3f71" + }, + { + "Name": "integrity", + "Value": "sha256-ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.2hws4x3f71.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "213" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2hws4x3f71" + }, + { + "Name": "integrity", + "Value": "sha256-VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004672897196" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "213" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZiuIlVvNftwBftGcNDO3ho/XyJi61MdgJHKtZrITTUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/it.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "213" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VM0Y+vveUj3pfMWyHeMSwnuInvK8/XcqfIOqZTXkIRc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.liz185s9ut.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000517598344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "liz185s9ut" + }, + { + "Name": "integrity", + "Value": "sha256-Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.liz185s9ut.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4735" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "liz185s9ut" + }, + { + "Name": "integrity", + "Value": "sha256-Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.liz185s9ut.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "liz185s9ut" + }, + { + "Name": "integrity", + "Value": "sha256-ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000517598344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4735" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dab7isW0at4vvGj33Y5fMsgvm9bH6mN6L/9Y8Ngr5Cc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/je.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1931" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ihutah3RCbOwc+qqPO3Uvw3WnWKM8R4ID0QQSVzenVE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004132231405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "397" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.zonn2x4zz3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004132231405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zonn2x4zz3" + }, + { + "Name": "integrity", + "Value": "sha256-TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.zonn2x4zz3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "397" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zonn2x4zz3" + }, + { + "Name": "integrity", + "Value": "sha256-TcJ+lBdVkGq/BY9jFRMr8udOKXDD1wI8K2664CpZKR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jm.zonn2x4zz3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "241" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zonn2x4zz3" + }, + { + "Name": "integrity", + "Value": "sha256-kl8LsceDA65UFtE+EP8dvcXIKVwWoVQdG7g6gytmrwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002531645570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.zhse3bfmz9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002531645570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhse3bfmz9" + }, + { + "Name": "integrity", + "Value": "sha256-ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.zhse3bfmz9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhse3bfmz9" + }, + { + "Name": "integrity", + "Value": "sha256-ORlBMPKtJbLjc229buOJ2nocPGMogvxsWSr7KWNt/LM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jo.zhse3bfmz9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zhse3bfmz9" + }, + { + "Name": "integrity", + "Value": "sha256-QuP6wbLTzizIY7jU03P9thZK6LzIjziNYj1u2AyiXQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.24ruwqrkce.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24ruwqrkce" + }, + { + "Name": "integrity", + "Value": "sha256-PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.24ruwqrkce.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "485" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24ruwqrkce" + }, + { + "Name": "integrity", + "Value": "sha256-PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.24ruwqrkce.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24ruwqrkce" + }, + { + "Name": "integrity", + "Value": "sha256-1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "485" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PqO5XynEiJTs3m5qonP8k39X676xZe6U3iGmMuS3jWA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/jp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1MYDl+aSfOsGaI0+X7MdcymHQXdxjQv8ap21EJixxMc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.ll4m8sxzor.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001788908766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "558" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll4m8sxzor" + }, + { + "Name": "integrity", + "Value": "sha256-N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.ll4m8sxzor.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll4m8sxzor" + }, + { + "Name": "integrity", + "Value": "sha256-N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.ll4m8sxzor.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "558" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll4m8sxzor" + }, + { + "Name": "integrity", + "Value": "sha256-6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001788908766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "558" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N3eREArkk72m0ytqlhZMxVWVo1YygoS1j52nzIRVZ4U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ke.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "558" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6hpnN8s7Ws32ALOqceQbSuiDHXllaMCqftLPpdhTdbM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.1zpdpcagkq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000615763547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zpdpcagkq" + }, + { + "Name": "integrity", + "Value": "sha256-QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.1zpdpcagkq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zpdpcagkq" + }, + { + "Name": "integrity", + "Value": "sha256-QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.1zpdpcagkq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zpdpcagkq" + }, + { + "Name": "integrity", + "Value": "sha256-bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000615763547" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3389" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QzKv8+PO95SnRmhfZSMd8/MYnburiw3X2GbnsfyRWpA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1623" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bI70Fr/erUqziRh8tFNk739qnhT+RT5kbM+WRfmowy8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.73ykq7930k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000356887937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2801" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73ykq7930k" + }, + { + "Name": "integrity", + "Value": "sha256-kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.73ykq7930k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73ykq7930k" + }, + { + "Name": "integrity", + "Value": "sha256-kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.73ykq7930k.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2801" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73ykq7930k" + }, + { + "Name": "integrity", + "Value": "sha256-qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000356887937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2801" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kw+WdOfbhUtDeTEmP3DBWJ4E3wSqZQIVm1sEvA00G2o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2801" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qqKnP/lnxGzEsgPBazd9pwOmUIJm+blxHs9U3ksJXwE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000569476082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1755" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5849" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1755" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.vs2k9n2p5g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000569476082" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1755" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs2k9n2p5g" + }, + { + "Name": "integrity", + "Value": "sha256-0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.vs2k9n2p5g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5849" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs2k9n2p5g" + }, + { + "Name": "integrity", + "Value": "sha256-0e/+x4E+qJP8C5B22LOYCtetRfS+/owcRXGFTfI5F/s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ki.vs2k9n2p5g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1755" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vs2k9n2p5g" + }, + { + "Name": "integrity", + "Value": "sha256-Ad1txAmMNCRzcVljW1Eov2c0jIsXJ/JnKaNYOUbSjAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ki.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.71zfplngmx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001968503937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "71zfplngmx" + }, + { + "Name": "integrity", + "Value": "sha256-5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.71zfplngmx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1080" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "71zfplngmx" + }, + { + "Name": "integrity", + "Value": "sha256-5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.71zfplngmx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "71zfplngmx" + }, + { + "Name": "integrity", + "Value": "sha256-gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001968503937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1080" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5QMs+9xUDj/0mf6vAEpsfaJCI/JKoe3pcVi6ijih4BA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/km.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "507" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gwFS6sc9OvPu/V0pDyDSH4/6QqGB5RGDKLKDrSyXhpc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002164502165" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.tmljozp923.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002164502165" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tmljozp923" + }, + { + "Name": "integrity", + "Value": "sha256-RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.tmljozp923.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tmljozp923" + }, + { + "Name": "integrity", + "Value": "sha256-RUiAsySEzONEW9zXk4ndcQYcMSY6UIl8bZ4MT7/S+4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kn.tmljozp923.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "461" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tmljozp923" + }, + { + "Name": "integrity", + "Value": "sha256-tR0nLwnVgiX1GqIck+/qMMlhHYMyzUQWKFYk5snAwcc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.x77eejjtwq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x77eejjtwq" + }, + { + "Name": "integrity", + "Value": "sha256-DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.x77eejjtwq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x77eejjtwq" + }, + { + "Name": "integrity", + "Value": "sha256-DYaOxfHW9bUW869bZNqU3zyehPdXdIyscEZfXcZY024=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kp.x77eejjtwq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x77eejjtwq" + }, + { + "Name": "integrity", + "Value": "sha256-nDAlZRFH39LVRLoHQ1vTRzvsASii1M+YGMO7KlBbKWQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.scquasz2a0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001310615990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scquasz2a0" + }, + { + "Name": "integrity", + "Value": "sha256-7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.scquasz2a0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scquasz2a0" + }, + { + "Name": "integrity", + "Value": "sha256-7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.scquasz2a0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scquasz2a0" + }, + { + "Name": "integrity", + "Value": "sha256-SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001310615990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7MplwW5cF6wGDIrligomXUlgB3qMRVZfd0GnD2r1GrY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "762" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SsPEDZwhSUS8IO8Bj1X7zDjFZwJea2cayJzVp1Ph2kI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003164556962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "522" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.v09s0hvvu4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003164556962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v09s0hvvu4" + }, + { + "Name": "integrity", + "Value": "sha256-r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.v09s0hvvu4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "522" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v09s0hvvu4" + }, + { + "Name": "integrity", + "Value": "sha256-r7CjazvAog8pbWYT9Vkx9Sdrow5xNmfuj3YylSe3cpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kw.v09s0hvvu4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "315" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v09s0hvvu4" + }, + { + "Name": "integrity", + "Value": "sha256-c28UBbywt6MAdtlmhxNIv9DgZC6USUyDwRSI6I/ODpU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.5du9igckm4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123900384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5du9igckm4" + }, + { + "Name": "integrity", + "Value": "sha256-B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.5du9igckm4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5du9igckm4" + }, + { + "Name": "integrity", + "Value": "sha256-B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.5du9igckm4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5du9igckm4" + }, + { + "Name": "integrity", + "Value": "sha256-kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000123900384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "21787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B6yZiR6+IsqFBQSx+q21qZ8ugVMkzsyMYnSRC8W4ik8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ky.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kDERRoiju2puolfuV+5/GjT+fPK0EmlZ/Q0ayzdP5FA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000232774674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.tdvvtjm8ya.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000232774674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tdvvtjm8ya" + }, + { + "Name": "integrity", + "Value": "sha256-oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.tdvvtjm8ya.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11350" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tdvvtjm8ya" + }, + { + "Name": "integrity", + "Value": "sha256-oXnf+M65c/VhXFQPGbDqPiPbB+xhYFHvOd3SZuJajf4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/kz.tdvvtjm8ya.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tdvvtjm8ya" + }, + { + "Name": "integrity", + "Value": "sha256-GwnI3Lb6ABY3at0rx2rFH8w1rE5pwgJo+s6OAB9tEno=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/kz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.bgadfstgle.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003508771930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "284" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgadfstgle" + }, + { + "Name": "integrity", + "Value": "sha256-1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.bgadfstgle.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgadfstgle" + }, + { + "Name": "integrity", + "Value": "sha256-1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.bgadfstgle.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "284" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bgadfstgle" + }, + { + "Name": "integrity", + "Value": "sha256-GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003508771930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "284" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1VrG/yBeUPb2lvF+wf7B0Q5X/o5Lf06VgPYuAJrERgM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/la.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "284" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWSh5LciCnVUwRLFhnxxSMUHIh2s/1R+zC8kaMPEh6g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.mf6fs9gcom.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000735294118" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mf6fs9gcom" + }, + { + "Name": "integrity", + "Value": "sha256-rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.mf6fs9gcom.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2831" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mf6fs9gcom" + }, + { + "Name": "integrity", + "Value": "sha256-rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.mf6fs9gcom.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mf6fs9gcom" + }, + { + "Name": "integrity", + "Value": "sha256-wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000735294118" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2831" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rtELKnVa7TSar+gnYFKxCN8Gv6vbYCHQfhscaMDU6PY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wJJq1BDiEaOizR7MAIJOxo5d7GEyURPRLix/TchZLwo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.rh61ehh2yd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh61ehh2yd" + }, + { + "Name": "integrity", + "Value": "sha256-HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.rh61ehh2yd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh61ehh2yd" + }, + { + "Name": "integrity", + "Value": "sha256-HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.rh61ehh2yd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh61ehh2yd" + }, + { + "Name": "integrity", + "Value": "sha256-PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004032258065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "378" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HxkvTkPsu8EDQldsx5Ho4N00UXNwsssVCEZofbpHC3U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "247" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PRKj4gaQnzdQGRhZuAzrROnKELDBAH5iSB5JOz+COo4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.4afeh8u93e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000302663438" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3303" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4afeh8u93e" + }, + { + "Name": "integrity", + "Value": "sha256-3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.4afeh8u93e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8311" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4afeh8u93e" + }, + { + "Name": "integrity", + "Value": "sha256-3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.4afeh8u93e.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3303" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4afeh8u93e" + }, + { + "Name": "integrity", + "Value": "sha256-HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000302663438" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3303" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8311" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3DXyjnARYv8+6x+dJCYEry5KJLTbnvF4Yiw46SGU3Sk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/li.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3303" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HpPancXkZYexF/8zL7xmyn3w8QvVMb1oiWE9hIi8Q90=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214776632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.y2kyy12mc3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000214776632" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2kyy12mc3" + }, + { + "Name": "integrity", + "Value": "sha256-KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.y2kyy12mc3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2kyy12mc3" + }, + { + "Name": "integrity", + "Value": "sha256-KkCa4upR2G5Eb9LO2l1sCDeOhvSuY7rtopjTt8SzYsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lk.y2kyy12mc3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2kyy12mc3" + }, + { + "Name": "integrity", + "Value": "sha256-q5V/IJ5O4iqJ3Yyv3R2oJ5NjFAApV1BWxqiZvk+YrqA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.l5wsiwc211.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5wsiwc211" + }, + { + "Name": "integrity", + "Value": "sha256-yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.l5wsiwc211.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5wsiwc211" + }, + { + "Name": "integrity", + "Value": "sha256-yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.l5wsiwc211.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5wsiwc211" + }, + { + "Name": "integrity", + "Value": "sha256-Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yaPspZ8p4R0sgYQkzAK4hACJz+daiicvE1OFpyLMOdo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q9IDC5kNRi+C5JxSsVmirl4VG+17p3IG7K1EF++ZXV4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.xrwjmjt8x6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xrwjmjt8x6" + }, + { + "Name": "integrity", + "Value": "sha256-UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.xrwjmjt8x6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xrwjmjt8x6" + }, + { + "Name": "integrity", + "Value": "sha256-UwFEz3/224iBs3Og9gZ8Tx78DGFu3CFwhzk1SOD90lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ls.xrwjmjt8x6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xrwjmjt8x6" + }, + { + "Name": "integrity", + "Value": "sha256-ROQA8/FWYvQlywS9bf258Th4yi2gKjgXLoT2oo9LrI8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ls.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.oa695fkfl2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oa695fkfl2" + }, + { + "Name": "integrity", + "Value": "sha256-IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.oa695fkfl2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oa695fkfl2" + }, + { + "Name": "integrity", + "Value": "sha256-IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.oa695fkfl2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oa695fkfl2" + }, + { + "Name": "integrity", + "Value": "sha256-XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IElmUaB7Cylne58UZefIGjNYk/lBmJBMXLJ2mMmd/dA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XM26atDaZ0BJNs4sXXEVfkxBP6SCMMnjRKDVgy12Isk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.5ua1p8bj67.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005917159763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "168" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ua1p8bj67" + }, + { + "Name": "integrity", + "Value": "sha256-48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.5ua1p8bj67.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ua1p8bj67" + }, + { + "Name": "integrity", + "Value": "sha256-48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.5ua1p8bj67.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "168" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ua1p8bj67" + }, + { + "Name": "integrity", + "Value": "sha256-KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005917159763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "168" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "233" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-48mSqJ2ccq+hFhQ2Gi1zOz1hn7r1j/L47M4yUL14bhA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "168" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KIo20S/s3ZTnxKiMSiTNpWmbJzh37C/F+gXZlG98cq8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005405405405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.syvf01wvhc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005405405405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "syvf01wvhc" + }, + { + "Name": "integrity", + "Value": "sha256-bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.syvf01wvhc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "239" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "syvf01wvhc" + }, + { + "Name": "integrity", + "Value": "sha256-bEwtV6Y70VjaeWa3TSRHLD2y1FNzR75lzICHV9W8Yrk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/lv.syvf01wvhc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "syvf01wvhc" + }, + { + "Name": "integrity", + "Value": "sha256-gqbuhMKwRxEG6UsDkL9LaKdln40Di0f6DdMjrQhN/as=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/lv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "546" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.tfl84cln8h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003039513678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfl84cln8h" + }, + { + "Name": "integrity", + "Value": "sha256-iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.tfl84cln8h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "546" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfl84cln8h" + }, + { + "Name": "integrity", + "Value": "sha256-iWKcREy270Fkp4DZreRw5vmfEm/nEdpwzuAlCMsXcgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ly.tfl84cln8h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfl84cln8h" + }, + { + "Name": "integrity", + "Value": "sha256-SAnqZuAPA5RQGkPSBWEvGIIJXM9MvFyTUh4cgeilMEU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ly.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.xs81a9n747.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xs81a9n747" + }, + { + "Name": "integrity", + "Value": "sha256-L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.xs81a9n747.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xs81a9n747" + }, + { + "Name": "integrity", + "Value": "sha256-L98ggrVS2b3x4EMTJHgGyxLHzn3wgZtsHTiwBaW1O10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ma.xs81a9n747.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xs81a9n747" + }, + { + "Name": "integrity", + "Value": "sha256-CkDnyshx84331ahE0SLTwI6BEwuKXjvmtyEZ2FMEbME=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ma.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.3dwlsflt2l.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dwlsflt2l" + }, + { + "Name": "integrity", + "Value": "sha256-F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.3dwlsflt2l.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dwlsflt2l" + }, + { + "Name": "integrity", + "Value": "sha256-F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.3dwlsflt2l.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3dwlsflt2l" + }, + { + "Name": "integrity", + "Value": "sha256-KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F1/sDwp/r4IXD/dB7tXdEEs7aIolHGi/EhN+YZ7FbmY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KcS4+NEe2E9fVHegVwJ3lHzBPdWz2yX45fHQUcTlxgw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.rt8mw638co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341880342" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2924" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt8mw638co" + }, + { + "Name": "integrity", + "Value": "sha256-0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.rt8mw638co.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt8mw638co" + }, + { + "Name": "integrity", + "Value": "sha256-0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.rt8mw638co.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2924" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rt8mw638co" + }, + { + "Name": "integrity", + "Value": "sha256-o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341880342" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2924" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "11307" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0QEhUSjXNhDw1bHhU0eC4p9QTnF7Cs8LdEWkR+fWfVc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/md.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2924" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o9EufhRVl5EyYPZqjEVq/9yDy3Ebila1A5s3XzuhG58=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.oi9thzkjdj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042583997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23482" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oi9thzkjdj" + }, + { + "Name": "integrity", + "Value": "sha256-cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.oi9thzkjdj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "62489" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oi9thzkjdj" + }, + { + "Name": "integrity", + "Value": "sha256-cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.oi9thzkjdj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23482" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oi9thzkjdj" + }, + { + "Name": "integrity", + "Value": "sha256-2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042583997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23482" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "62489" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cPJBBUoTBZUWP5LAqcLs79t0SAk/XaZ297cI9LAZWfw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/me.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23482" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2YO4Nanrz1o6l4EWZWy7j9TIZmsutuRDpAjKL+CGG2c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.twg1lw2f8c.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twg1lw2f8c" + }, + { + "Name": "integrity", + "Value": "sha256-I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.twg1lw2f8c.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twg1lw2f8c" + }, + { + "Name": "integrity", + "Value": "sha256-I1+kNMD3a+KxjTap4J90cIccfTTuzZNj07pcChm3ax0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mf.twg1lw2f8c.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "twg1lw2f8c" + }, + { + "Name": "integrity", + "Value": "sha256-Vx7eLef8XsxwZNyCbhpeh5pVcrS3lcQXvIhR6skiB1M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.8785srnlyu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8785srnlyu" + }, + { + "Name": "integrity", + "Value": "sha256-xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.8785srnlyu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8785srnlyu" + }, + { + "Name": "integrity", + "Value": "sha256-xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.8785srnlyu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8785srnlyu" + }, + { + "Name": "integrity", + "Value": "sha256-ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004651162791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFDAsZtJLS9aIYBvrcAmx+cmbO5k3m3Q9ew+opmuzwo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "214" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ccTulBBUnkD0yn0AtlWZVJ9y3UTzQgpJjRIuitxPBmo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.j7feczg9c1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002227171492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7feczg9c1" + }, + { + "Name": "integrity", + "Value": "sha256-gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.j7feczg9c1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7feczg9c1" + }, + { + "Name": "integrity", + "Value": "sha256-gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.j7feczg9c1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7feczg9c1" + }, + { + "Name": "integrity", + "Value": "sha256-LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002227171492" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gYP8MwvFeEPaCjm8g56HuoTTvUkfrd6S/omEn8p7fPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LNRjRY4AebkJWkHF8vgP/QvM/rW2DCRjXjjCCMW2khs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.n5uh7452fq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5uh7452fq" + }, + { + "Name": "integrity", + "Value": "sha256-FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.n5uh7452fq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5uh7452fq" + }, + { + "Name": "integrity", + "Value": "sha256-FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.n5uh7452fq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5uh7452fq" + }, + { + "Name": "integrity", + "Value": "sha256-zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "387" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FYa2MDKd69fHB3OpkI74jJaWwh9ZJ/f93RV9WHFd6K4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zYLcduLZFmBQmmvw+v1tp6tH/iGGItnbuXsdEKfcLmw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.gg4bhvchq7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gg4bhvchq7" + }, + { + "Name": "integrity", + "Value": "sha256-UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.gg4bhvchq7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gg4bhvchq7" + }, + { + "Name": "integrity", + "Value": "sha256-UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.gg4bhvchq7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gg4bhvchq7" + }, + { + "Name": "integrity", + "Value": "sha256-HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "283" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UHhSTiQCrM1Cj1c3ThZTKFLWktNDcWuIloqFNOdQqjo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ml.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HidLgnNMOlsKgLLoQMkSpxFEYZYduycQY2oI6FWv22E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.9z3y6c9r35.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9z3y6c9r35" + }, + { + "Name": "integrity", + "Value": "sha256-pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.9z3y6c9r35.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "864" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9z3y6c9r35" + }, + { + "Name": "integrity", + "Value": "sha256-pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.9z3y6c9r35.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9z3y6c9r35" + }, + { + "Name": "integrity", + "Value": "sha256-ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "864" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pQ7BppoKd6UNXvCet8s9Bm0zZpej6C2tZoCDFlMrL2M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZSXVZY6dsYGxYi8mS8AZk1ia1RNYxZ8PAodIfZfJc78=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.b2rwuqxj3d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001811594203" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "551" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2rwuqxj3d" + }, + { + "Name": "integrity", + "Value": "sha256-/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.b2rwuqxj3d.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2rwuqxj3d" + }, + { + "Name": "integrity", + "Value": "sha256-/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.b2rwuqxj3d.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "551" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2rwuqxj3d" + }, + { + "Name": "integrity", + "Value": "sha256-jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001811594203" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "551" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1258" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ViM4yN5y8H+3hFBXeHzd5rMqY0qhkQVdChUihm17Mw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "551" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jMSG5r4zY0W/gPWTHhx34YDmLt50KwvUkuiPUDIOa5c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.pd5bp9ygdj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001331557923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pd5bp9ygdj" + }, + { + "Name": "integrity", + "Value": "sha256-/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.pd5bp9ygdj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pd5bp9ygdj" + }, + { + "Name": "integrity", + "Value": "sha256-/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.pd5bp9ygdj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pd5bp9ygdj" + }, + { + "Name": "integrity", + "Value": "sha256-4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001331557923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/YwVQdth8cktYb7aiB3SuHVzM9SvE40LtW1MpG0Nut4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mo.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "750" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4hSAg4SLvVfw22yDwU2Lqjik70lH+t4kfRZOOq2MFYU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000136630687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "23484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.t89xrowck5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000136630687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t89xrowck5" + }, + { + "Name": "integrity", + "Value": "sha256-8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.t89xrowck5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "23484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t89xrowck5" + }, + { + "Name": "integrity", + "Value": "sha256-8/ffXIHzcuKZ4dDLePSVdl0D4+8STnOCTyLtBsIG9Ck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mp.t89xrowck5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7318" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t89xrowck5" + }, + { + "Name": "integrity", + "Value": "sha256-jOypEDNK3jVUqdBMqxIDv4v7Ta3pAszBQWAoONaKa3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mp.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.jlkg6ju58y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlkg6ju58y" + }, + { + "Name": "integrity", + "Value": "sha256-R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.jlkg6ju58y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlkg6ju58y" + }, + { + "Name": "integrity", + "Value": "sha256-R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.jlkg6ju58y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlkg6ju58y" + }, + { + "Name": "integrity", + "Value": "sha256-ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R96a+zMhe0gOk/5FuJqIgBhK1Di5Mab8axMOhCAihoM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mq.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ICPazDYbSrZci0dez6lMWbbUPSMXLkrzku5GnovDJrA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.o3yp6hch9h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3yp6hch9h" + }, + { + "Name": "integrity", + "Value": "sha256-HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.o3yp6hch9h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3yp6hch9h" + }, + { + "Name": "integrity", + "Value": "sha256-HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.o3yp6hch9h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3yp6hch9h" + }, + { + "Name": "integrity", + "Value": "sha256-ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "448" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HN3aezURB8DzKi4N1emNsYK1oioFI9XAz7H+VWJjqY0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ahaf8ci21DeqCAQB80Z0OVXmAPqZhd5SgA2Ks/1YWtA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314070352" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.z934gvjn8m.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314070352" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z934gvjn8m" + }, + { + "Name": "integrity", + "Value": "sha256-aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.z934gvjn8m.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9357" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z934gvjn8m" + }, + { + "Name": "integrity", + "Value": "sha256-aTpjrxaSBhH9jyJMV2ng+PcNIbCz5iNtsgABiZB0heQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ms.z934gvjn8m.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z934gvjn8m" + }, + { + "Name": "integrity", + "Value": "sha256-Y6/NumicC1Sb9VyUCxHdMki/BJDlHg1ltkB2FnvNDn8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ms.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.8cazyy7xzg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322476620" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3100" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cazyy7xzg" + }, + { + "Name": "integrity", + "Value": "sha256-GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.8cazyy7xzg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8782" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cazyy7xzg" + }, + { + "Name": "integrity", + "Value": "sha256-GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.8cazyy7xzg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3100" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8cazyy7xzg" + }, + { + "Name": "integrity", + "Value": "sha256-6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322476620" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3100" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8782" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GPmMhGJ8arJ5ORw5MtIrrADUp8FuTD1pbfUmfK93/mk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3100" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6pm9i3WKw/i4zGM4yJtCnrx3cphXX6dl2P2ZnM6wAtQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005050505051" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.virkhwiwao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005050505051" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "virkhwiwao" + }, + { + "Name": "integrity", + "Value": "sha256-Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.virkhwiwao.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "virkhwiwao" + }, + { + "Name": "integrity", + "Value": "sha256-Vxm4g+4rE1Y0ruxTPHKyT6PKYaxikOX1Nbcyii/ybhg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mu.virkhwiwao.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "virkhwiwao" + }, + { + "Name": "integrity", + "Value": "sha256-Y2F/GxsqNjjeEzmq4U2VSxLUES2oroSgkcRcfs7wuTs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.vi48244byb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004950495050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vi48244byb" + }, + { + "Name": "integrity", + "Value": "sha256-GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.vi48244byb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vi48244byb" + }, + { + "Name": "integrity", + "Value": "sha256-GWVlvbSTu4a+ogBp2Rkh2oiMpDm3ob9wDTS6hRzDvlE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mv.vi48244byb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "201" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vi48244byb" + }, + { + "Name": "integrity", + "Value": "sha256-LUbu42hy9pxwN5wuGgFT6BnOTm3g7hZUvLk+YxoduvY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.qyzl84gcvr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000587889477" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyzl84gcvr" + }, + { + "Name": "integrity", + "Value": "sha256-rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.qyzl84gcvr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3662" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyzl84gcvr" + }, + { + "Name": "integrity", + "Value": "sha256-rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.qyzl84gcvr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyzl84gcvr" + }, + { + "Name": "integrity", + "Value": "sha256-L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000587889477" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3662" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rr6hc7CJxO/eOPa6iNWS2ApwoKrUMdHb8Clw0TEaYQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L6tBQpgEt18jOfJBwQ+NvuOSn5U3N2WjC5IW6/bLomA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.4pwbwnyirt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030121389" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4pwbwnyirt" + }, + { + "Name": "integrity", + "Value": "sha256-SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.4pwbwnyirt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "95361" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4pwbwnyirt" + }, + { + "Name": "integrity", + "Value": "sha256-SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.4pwbwnyirt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4pwbwnyirt" + }, + { + "Name": "integrity", + "Value": "sha256-ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030121389" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "95361" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SPbw8XmIV8ds51dLNrXHrRH4QFrvV/LlRijPKJIyFmI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ab6y5QytYpV2BJe+uHa5V94DEqWQDQMEdx2xeal0TSw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.0n3wpoyw5b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001976284585" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n3wpoyw5b" + }, + { + "Name": "integrity", + "Value": "sha256-lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.0n3wpoyw5b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n3wpoyw5b" + }, + { + "Name": "integrity", + "Value": "sha256-lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.0n3wpoyw5b.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n3wpoyw5b" + }, + { + "Name": "integrity", + "Value": "sha256-6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001976284585" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1285" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lOwfRSfS1dzLNBqyIuu8bItZGM+jDrAaE8MMZKkI790=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/my.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6jMLF5a+/eB4Lxmf6T3H/1aIXLluoegfaNACAzepGfw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000933706816" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2643" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.vkp42hbarx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000933706816" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkp42hbarx" + }, + { + "Name": "integrity", + "Value": "sha256-gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.vkp42hbarx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2643" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkp42hbarx" + }, + { + "Name": "integrity", + "Value": "sha256-gU+h0GSsdQ6XCmmBHAYgQ6BYQN7zp9tHwmNYuNIDD6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/mz.vkp42hbarx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1070" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkp42hbarx" + }, + { + "Name": "integrity", + "Value": "sha256-HskiIOdm+8apM7i1SdNpnoaZGDdUy9ZHMv4nPJs2qV4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/mz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.d3dveywoou.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d3dveywoou" + }, + { + "Name": "integrity", + "Value": "sha256-Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.d3dveywoou.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1021" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d3dveywoou" + }, + { + "Name": "integrity", + "Value": "sha256-Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.d3dveywoou.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d3dveywoou" + }, + { + "Name": "integrity", + "Value": "sha256-bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1021" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ceqef+w1NQNeaQTPlzeODqNzXzK2cDoi0iWjQV0WPG0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/na.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bQcvfub822kgBx6ba5K7JZ5U63uR+FytIqBXoq7AxC0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.ps1v7gil9y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ps1v7gil9y" + }, + { + "Name": "integrity", + "Value": "sha256-2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.ps1v7gil9y.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ps1v7gil9y" + }, + { + "Name": "integrity", + "Value": "sha256-2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.ps1v7gil9y.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ps1v7gil9y" + }, + { + "Name": "integrity", + "Value": "sha256-fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2SG/bl5sRT9kpJGLd6q+GsNvS6BpBx2NUKhrPFxtYdo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fo5qHMlHqLbwkuivKFKDOEBGC0TPDucrvo+ag+QbKu8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.z9rhya87cs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005291005291" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9rhya87cs" + }, + { + "Name": "integrity", + "Value": "sha256-qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.z9rhya87cs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9rhya87cs" + }, + { + "Name": "integrity", + "Value": "sha256-qVGJdO3kYgTwIDI0OjL2qpoHSsQbykv6mau6xQNTGko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ne.z9rhya87cs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "188" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9rhya87cs" + }, + { + "Name": "integrity", + "Value": "sha256-X5pOXGRcRlOFog1Z3Mjr7Jk+NXnMKXuFQDevswoXC/w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ne.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.cozj153nwn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000385356455" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cozj153nwn" + }, + { + "Name": "integrity", + "Value": "sha256-pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.cozj153nwn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cozj153nwn" + }, + { + "Name": "integrity", + "Value": "sha256-pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.cozj153nwn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cozj153nwn" + }, + { + "Name": "integrity", + "Value": "sha256-pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000385356455" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pP+BnNawVe72NqrYcUYM7BrhsIrhV+4e5cUKY+4M7oA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2594" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pxywSJjNUfIrPBeNRPsS6VouGhc7VIRWqBzi7JK6O4s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.t19ji5wzmm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t19ji5wzmm" + }, + { + "Name": "integrity", + "Value": "sha256-bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.t19ji5wzmm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "266" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t19ji5wzmm" + }, + { + "Name": "integrity", + "Value": "sha256-bwX9aYYREGz/4t1PCoKh1MZ7jkvW0MxOJPcdC++ykms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ng.t19ji5wzmm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t19ji5wzmm" + }, + { + "Name": "integrity", + "Value": "sha256-K7U2QEvaINY6p+0SY/GCDJEvF5tbbjwpBId5vVrM1Cw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ng.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.537dzq2rpj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168152009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5946" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "537dzq2rpj" + }, + { + "Name": "integrity", + "Value": "sha256-IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.537dzq2rpj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "18537" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "537dzq2rpj" + }, + { + "Name": "integrity", + "Value": "sha256-IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.537dzq2rpj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5946" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "537dzq2rpj" + }, + { + "Name": "integrity", + "Value": "sha256-7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168152009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5946" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "18537" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IfCiooE9HGAY/D7dX2/3XSgYKY8ieE6livG6GQ23Pq0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ni.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5946" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7GSoEmVsB0ogOKDtR+N5zVS9P3WKV795klcf0/nfDkg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.976p2fn19b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006024096386" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "165" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "976p2fn19b" + }, + { + "Name": "integrity", + "Value": "sha256-pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.976p2fn19b.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "229" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "976p2fn19b" + }, + { + "Name": "integrity", + "Value": "sha256-pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.976p2fn19b.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "165" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "976p2fn19b" + }, + { + "Name": "integrity", + "Value": "sha256-Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.006024096386" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "165" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "229" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pXnCNHC3XmMzPs8xMXtr12utGkkhhdeb9OJYfunkIFk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "165" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xmn98Q/P65I9nybYKBvGKJ2pUR+TJDYEyBlYpHw7PCk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.f5iocpony9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005128205128" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5iocpony9" + }, + { + "Name": "integrity", + "Value": "sha256-40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.f5iocpony9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5iocpony9" + }, + { + "Name": "integrity", + "Value": "sha256-40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.f5iocpony9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5iocpony9" + }, + { + "Name": "integrity", + "Value": "sha256-Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005128205128" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40G2LvVJUAx1VFrY3+Y4heqaHTJZE5261d+0/vqbXgk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/no.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wx22OKAvWwkGpfu2FBQp/VA0EAr8pSOXvMoE7+ZDQOg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.pv60t76beq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pv60t76beq" + }, + { + "Name": "integrity", + "Value": "sha256-1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.pv60t76beq.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1075" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pv60t76beq" + }, + { + "Name": "integrity", + "Value": "sha256-1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.pv60t76beq.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pv60t76beq" + }, + { + "Name": "integrity", + "Value": "sha256-DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1075" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fvOrbTCqFN74K3Q/O6xG72llY2TlrPvRJri1olY7io=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/np.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DPZFBlpGFLQplcNPHZ5FuP829VRxjZhZbmo/1t4rVJo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.yotvznr7a5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yotvznr7a5" + }, + { + "Name": "integrity", + "Value": "sha256-7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.yotvznr7a5.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yotvznr7a5" + }, + { + "Name": "integrity", + "Value": "sha256-7igbuNBXmE+k9puh4wDI25i6pTqrry4RTz0vDLoahkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nr.yotvznr7a5.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yotvznr7a5" + }, + { + "Name": "integrity", + "Value": "sha256-+wAfvWYDXZODc9n10CIZITZVAU0ZymUYlN05k75GMVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.kfwz1ox3bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001272264631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfwz1ox3bg" + }, + { + "Name": "integrity", + "Value": "sha256-8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.kfwz1ox3bg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfwz1ox3bg" + }, + { + "Name": "integrity", + "Value": "sha256-8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.kfwz1ox3bg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfwz1ox3bg" + }, + { + "Name": "integrity", + "Value": "sha256-gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001272264631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8F9pKREtZN9UV1BFvetw3zI4LGBc52ibqgaGwKGpqsA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "785" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gOVlEulwrWVYBRKcr/V8SxWKH085ryMhHHilk1utYBM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.ij1ukxoe48.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001180637544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=\"" + }, + { + "Name": "ETag", + "Value": "W/\"suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ij1ukxoe48" + }, + { + "Name": "integrity", + "Value": "sha256-suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.ij1ukxoe48.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3030" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ij1ukxoe48" + }, + { + "Name": "integrity", + "Value": "sha256-suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.ij1ukxoe48.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ij1ukxoe48" + }, + { + "Name": "integrity", + "Value": "sha256-tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001180637544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=\"" + }, + { + "Name": "ETag", + "Value": "W/\"suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3030" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-suQlyjvJIf6fmrDGjHRN8QGLR3cPipx7nFP2Rfmj39s=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/nz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tpJmDVzS93eqVLtZE8/MMrXNUULnYqxfF5OiEQF8jso=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.p4w5buq9wt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222074173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4w5buq9wt" + }, + { + "Name": "integrity", + "Value": "sha256-6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.p4w5buq9wt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22751" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4w5buq9wt" + }, + { + "Name": "integrity", + "Value": "sha256-6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.p4w5buq9wt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4w5buq9wt" + }, + { + "Name": "integrity", + "Value": "sha256-e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222074173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "22751" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6TTpJ5X/6go1ETnBkU2axkKRubu8wTQC6B1FFK+y65g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/om.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4502" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e/cE39GMYvtJuHvrFmcnR3DDSdKq3ws7ihkL+czEkqw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "763" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.zjmpuxpw5h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zjmpuxpw5h" + }, + { + "Name": "integrity", + "Value": "sha256-kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.zjmpuxpw5h.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "763" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zjmpuxpw5h" + }, + { + "Name": "integrity", + "Value": "sha256-kS+EqO3/0G2f0nDZpTkub/W6omFExFJZvZwUzKevRbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pa.zjmpuxpw5h.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zjmpuxpw5h" + }, + { + "Name": "integrity", + "Value": "sha256-3eYdK4U+n5vD22W+mSXMw7WePdyFCj0MC0vPjE85ZcY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038732667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25817" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "73853" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25817" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.zwe6vmnztr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038732667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25817" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwe6vmnztr" + }, + { + "Name": "integrity", + "Value": "sha256-/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.zwe6vmnztr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "73853" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwe6vmnztr" + }, + { + "Name": "integrity", + "Value": "sha256-/afAY8N79UuNptFUqkvgbA/s82cHPct8wKO7OmGoAFc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pe.zwe6vmnztr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25817" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zwe6vmnztr" + }, + { + "Name": "integrity", + "Value": "sha256-BrmknegGXE7dC6zWvkOOOMIPf8FkB4noVlM7UQ2gH5U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pe.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.1tfmtzayeb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000552181115" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1tfmtzayeb" + }, + { + "Name": "integrity", + "Value": "sha256-hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.1tfmtzayeb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1tfmtzayeb" + }, + { + "Name": "integrity", + "Value": "sha256-hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.1tfmtzayeb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1tfmtzayeb" + }, + { + "Name": "integrity", + "Value": "sha256-/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000552181115" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4309" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hcKAPmoEPMx5SecNHmy9s9TzCUlorVclsKhnuOON8gw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Khv8RS29PaEH6t95X1yz1vKrntbOh+qRp4QkWgPJEo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.e896wc65s1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001140250855" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e896wc65s1" + }, + { + "Name": "integrity", + "Value": "sha256-whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.e896wc65s1.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1670" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e896wc65s1" + }, + { + "Name": "integrity", + "Value": "sha256-whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.e896wc65s1.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e896wc65s1" + }, + { + "Name": "integrity", + "Value": "sha256-977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001140250855" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1670" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-whtWYxyf1d2UFvPPiZbDKpw2TucxFgYWBOk2YKxIrqM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-977tqDETvefBivRxyEtiCT/R9+CEOUDuVRqZrdn63QA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.g7n4464wr3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001338688086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7n4464wr3" + }, + { + "Name": "integrity", + "Value": "sha256-fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.g7n4464wr3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1574" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7n4464wr3" + }, + { + "Name": "integrity", + "Value": "sha256-fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.g7n4464wr3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g7n4464wr3" + }, + { + "Name": "integrity", + "Value": "sha256-M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001338688086" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1574" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fOoEYLChLfQwdolgNtrn8H4sHS3e43rMhquK7JGmuJg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ph.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M9XbPiJsEMAsgEPNRHZYwdPSaKlFeVYTfSGBYxuWvzA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.c0si16wveb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002257336343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "442" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c0si16wveb" + }, + { + "Name": "integrity", + "Value": "sha256-tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.c0si16wveb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c0si16wveb" + }, + { + "Name": "integrity", + "Value": "sha256-tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.c0si16wveb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "442" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c0si16wveb" + }, + { + "Name": "integrity", + "Value": "sha256-Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002257336343" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "442" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tGgzY6LANVjaFXlINgLYoQbv3ph0ThO/26GVX/uc+9Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "442" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sh7H98tH5vUhJ66R5+pZpQb/vBYGS+Hvtkj9a1Z0wDE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.6jz8iojprh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6jz8iojprh" + }, + { + "Name": "integrity", + "Value": "sha256-4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.6jz8iojprh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6jz8iojprh" + }, + { + "Name": "integrity", + "Value": "sha256-4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.6jz8iojprh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6jz8iojprh" + }, + { + "Name": "integrity", + "Value": "sha256-WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005649717514" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "228" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4of0rVRF/YNQlE2cykPC+uFjJRuaDp7cL2l324Nj7IE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WVbQAvu2mCb4tPfGCDPpaL2ob9+uPdZTgaebp5DjizM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.xczst7hx7i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xczst7hx7i" + }, + { + "Name": "integrity", + "Value": "sha256-Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.xczst7hx7i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xczst7hx7i" + }, + { + "Name": "integrity", + "Value": "sha256-Aaurv0wdHhBcIYiken6Mxga/QDBVP56mZXsU6rVS5Pc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pm.xczst7hx7i.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xczst7hx7i" + }, + { + "Name": "integrity", + "Value": "sha256-affgtWtnlViUvldw4vyd38dJa9UDVuwbtY+g8A6est8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.gpe9t231df.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243664717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpe9t231df" + }, + { + "Name": "integrity", + "Value": "sha256-tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.gpe9t231df.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10940" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpe9t231df" + }, + { + "Name": "integrity", + "Value": "sha256-tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.gpe9t231df.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpe9t231df" + }, + { + "Name": "integrity", + "Value": "sha256-1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243664717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10940" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tKdnw3okkCdrkFgSozNUNji5L+DkOqcs+GArxvYRuxY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1SJzKXGLmexYPiuQHPP+6OY7XaanzaulATQ2WJG187g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.6s6f5opz6w.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6s6f5opz6w" + }, + { + "Name": "integrity", + "Value": "sha256-6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.6s6f5opz6w.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6s6f5opz6w" + }, + { + "Name": "integrity", + "Value": "sha256-6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.6s6f5opz6w.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6s6f5opz6w" + }, + { + "Name": "integrity", + "Value": "sha256-0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6lpUTrWu99aLR8+4PWecTKgac0d3675F73O4at/hO5I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0cFy9tTnO22PUz7qfJ7g66Q86TuHCfaHAftyMUQYGUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.stdjpmrrog.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stdjpmrrog" + }, + { + "Name": "integrity", + "Value": "sha256-wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.stdjpmrrog.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stdjpmrrog" + }, + { + "Name": "integrity", + "Value": "sha256-wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.stdjpmrrog.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "stdjpmrrog" + }, + { + "Name": "integrity", + "Value": "sha256-XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wA1oiRV1AUVbFtclMdaCrQy1wOXIKm3Etett+7PO3Hc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ps.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XKpPToR6fq9i1Eu2NleCKEwM/OnKPkTdXZVHBpSuqqc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000292226768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.xx40m3rvyh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000292226768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xx40m3rvyh" + }, + { + "Name": "integrity", + "Value": "sha256-+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.xx40m3rvyh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8337" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xx40m3rvyh" + }, + { + "Name": "integrity", + "Value": "sha256-+7Q1fMXJICb7o/EkXyIjJx9SJO8euu617kWwENsnfAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pt.xx40m3rvyh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xx40m3rvyh" + }, + { + "Name": "integrity", + "Value": "sha256-MRC2tsQEDGg5zlbQP+AV/IyeTXL3KRovzS61V8iKAWM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.7hq6i80nc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hq6i80nc9" + }, + { + "Name": "integrity", + "Value": "sha256-i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.7hq6i80nc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hq6i80nc9" + }, + { + "Name": "integrity", + "Value": "sha256-i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.7hq6i80nc9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7hq6i80nc9" + }, + { + "Name": "integrity", + "Value": "sha256-m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003215434084" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i/0uKOFAKi8wFE5CH7Y/HTTnORMfaaoo7SlsqE/i0Pg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/pw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "310" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m8NdmTyO5RKUHnSlqcBtrUY/ExiNR7hbScWlERuGXh0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.scal9jgm7n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000161707633" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scal9jgm7n" + }, + { + "Name": "integrity", + "Value": "sha256-rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.scal9jgm7n.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "17254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scal9jgm7n" + }, + { + "Name": "integrity", + "Value": "sha256-rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.scal9jgm7n.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "scal9jgm7n" + }, + { + "Name": "integrity", + "Value": "sha256-IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000161707633" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "17254" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rHwdJ66AYpxo2y1BG2dIVQid4egOkmlVixkERemkys8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/py.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6183" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IlOpi6aevi7ygpVgW0/F43aE74nXlrmn5JXwRVrEiuc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.ba4tobora4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ba4tobora4" + }, + { + "Name": "integrity", + "Value": "sha256-8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.ba4tobora4.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ba4tobora4" + }, + { + "Name": "integrity", + "Value": "sha256-8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.ba4tobora4.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ba4tobora4" + }, + { + "Name": "integrity", + "Value": "sha256-mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004926108374" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "363" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8x5l5qj0UmUDt9YYZ3BlcdZ279BjAX5rUBO4g+WIdF8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/qa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "202" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mnp8TBoYEGk6vYXOfiIfo9dFPz7kVrwXyR1I0xzKzdM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.whsqkcsc32.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004761904762" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whsqkcsc32" + }, + { + "Name": "integrity", + "Value": "sha256-POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.whsqkcsc32.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whsqkcsc32" + }, + { + "Name": "integrity", + "Value": "sha256-POkQlPU1sLC/5SJ7c+dH3aT/EVYF0Me5BggGkLy6vG8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/re.whsqkcsc32.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "209" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "whsqkcsc32" + }, + { + "Name": "integrity", + "Value": "sha256-2yIF+kD8GrAru18oXZzjn9fVOLcWqT1m9fAS8cenBYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/re.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.gy0nob2b27.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004545454545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gy0nob2b27" + }, + { + "Name": "integrity", + "Value": "sha256-mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.gy0nob2b27.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gy0nob2b27" + }, + { + "Name": "integrity", + "Value": "sha256-mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.gy0nob2b27.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gy0nob2b27" + }, + { + "Name": "integrity", + "Value": "sha256-/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004545454545" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mGglUE+fHwoMaVuoLEV/i9m3TLE09i7yI2SgvRZSKuo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ro.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "219" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/SeHxqnLSZC3mrZsWyBmAcQr5GtrVX9DAps7PHvn7CI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.delc76xqq7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019042541" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "delc76xqq7" + }, + { + "Name": "integrity", + "Value": "sha256-qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.delc76xqq7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "187426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "delc76xqq7" + }, + { + "Name": "integrity", + "Value": "sha256-qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.delc76xqq7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "delc76xqq7" + }, + { + "Name": "integrity", + "Value": "sha256-skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019042541" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "187426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qzk63jgdaUXZXR7sBJCtyJxIkptb0Itn+Zyqfl88Qb4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rs.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "52513" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-skCh1bUM6OyI1Gf0BPGIBDU3OHBFUvxl9b7TSVVSA7Y=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.0fxu01de84.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fxu01de84" + }, + { + "Name": "integrity", + "Value": "sha256-rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.0fxu01de84.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fxu01de84" + }, + { + "Name": "integrity", + "Value": "sha256-rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.0fxu01de84.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fxu01de84" + }, + { + "Name": "integrity", + "Value": "sha256-kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004830917874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rPjz04qIBQxiSbX9S3djmYf7jTQMVSkrgPsnq4TLri0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ru.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "206" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kqcwmdM+8KvY73mlHGX0Iw+MvntMAzaSU4BiNrwziV4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.266onl01un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002481389578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "266onl01un" + }, + { + "Name": "integrity", + "Value": "sha256-OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.266onl01un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "266onl01un" + }, + { + "Name": "integrity", + "Value": "sha256-OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.266onl01un.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "266onl01un" + }, + { + "Name": "integrity", + "Value": "sha256-HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002481389578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OmDWRRKXaUp+oXjunzU8CoEG/AZckX/e8JzGPODQjbk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/rw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HfkqzMB2vUj3IBFeOkmE4ZinE56PT4QNXynH59ChKVA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.jbchf411k3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000227998176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbchf411k3" + }, + { + "Name": "integrity", + "Value": "sha256-YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.jbchf411k3.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbchf411k3" + }, + { + "Name": "integrity", + "Value": "sha256-YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.jbchf411k3.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbchf411k3" + }, + { + "Name": "integrity", + "Value": "sha256-pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000227998176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "10264" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YVi7auRrFnvXYJasYnElJLEslSURWVe7aLQNevOO5cU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sa.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4385" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pYSDrM4V4sFWGTE10shxkpPScaBxaVhc+3msf3p7Y9o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "966" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.wyhiaouw7r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyhiaouw7r" + }, + { + "Name": "integrity", + "Value": "sha256-eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.wyhiaouw7r.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "966" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyhiaouw7r" + }, + { + "Name": "integrity", + "Value": "sha256-eLW7dt6zqsZ8bXs5hOOSn9XZ0SYC4Ltz4+A+KBCQtXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sb.wyhiaouw7r.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyhiaouw7r" + }, + { + "Name": "integrity", + "Value": "sha256-HYs9CGCjfsfT2wUWVVP8NGnIOGEx24rRgMn5/ILj6Sc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sb.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.l6gp9ztb89.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003125000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "319" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l6gp9ztb89" + }, + { + "Name": "integrity", + "Value": "sha256-0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.l6gp9ztb89.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l6gp9ztb89" + }, + { + "Name": "integrity", + "Value": "sha256-0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.l6gp9ztb89.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "319" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l6gp9ztb89" + }, + { + "Name": "integrity", + "Value": "sha256-UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003125000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "319" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0zwF6bL4pTXYwWvhdXajVAfJxrU5sDPOQToTVOED5po=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "319" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UMErxP4AaRf+dViyEMSlbS8nITFNAjUj3yNVE+0zs3I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.mhvvf2jobu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003174603175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "314" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhvvf2jobu" + }, + { + "Name": "integrity", + "Value": "sha256-1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.mhvvf2jobu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "510" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhvvf2jobu" + }, + { + "Name": "integrity", + "Value": "sha256-1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.mhvvf2jobu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "314" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhvvf2jobu" + }, + { + "Name": "integrity", + "Value": "sha256-AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003174603175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "314" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "510" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1mfc0BX2NSeiaRIPM1KogUE1sKCmfbnkfcqOlK4b0mY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sd.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "314" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AqphkWg0wdHDO6fXfAvGuALTbPK2OXNt2tId2fVbmNU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.gjpxydtukc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjpxydtukc" + }, + { + "Name": "integrity", + "Value": "sha256-dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.gjpxydtukc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjpxydtukc" + }, + { + "Name": "integrity", + "Value": "sha256-dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.gjpxydtukc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjpxydtukc" + }, + { + "Name": "integrity", + "Value": "sha256-zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005747126437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "236" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dPqRqGl/q6L6+TR5lzvIsgs5/MnLjyadvGBMxMOSkaI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/se.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "173" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zklpuXYVteAV8YrU7Un54FYFYnkeqtsa5LewbHaqccE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.o70qnj7hxh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002288329519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o70qnj7hxh" + }, + { + "Name": "integrity", + "Value": "sha256-bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.o70qnj7hxh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "900" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o70qnj7hxh" + }, + { + "Name": "integrity", + "Value": "sha256-bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.o70qnj7hxh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o70qnj7hxh" + }, + { + "Name": "integrity", + "Value": "sha256-0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002288329519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "900" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bCklPsa1hxHFmM5OmW+b/OC3EVB+pUTWK+2WFOIAkWk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0tYv28utUBhJTH/go0tROLjWW+uyvMo0QEqaT3EHkUg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.squ3oqgyax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091107872" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10975" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "squ3oqgyax" + }, + { + "Name": "integrity", + "Value": "sha256-ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.squ3oqgyax.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "29575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "squ3oqgyax" + }, + { + "Name": "integrity", + "Value": "sha256-ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.squ3oqgyax.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10975" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "squ3oqgyax" + }, + { + "Name": "integrity", + "Value": "sha256-dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000091107872" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10975" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "29575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZP7hTOfwJn1ldu0UNpFwcCXEOxMY7qqnSkRguCiRcYY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sh.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "10975" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dzdLM9VpvCsCvoWT8/6j6wksnLZoIO4ymCN4e/DSQ/Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001085776330" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "920" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "2071" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "920" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.z9zdptiifk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001085776330" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "920" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zdptiifk" + }, + { + "Name": "integrity", + "Value": "sha256-KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.z9zdptiifk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2071" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zdptiifk" + }, + { + "Name": "integrity", + "Value": "sha256-KR9iH11ycG/NSgMDHgsOg/0spGNSnF0wdWzB9zK8OAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/si.z9zdptiifk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "920" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9zdptiifk" + }, + { + "Name": "integrity", + "Value": "sha256-ay4nWMMrkEZhP5HyJ4iC3HWhGYE0Fp6d1sXaZECbLIE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/si.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005128205128" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.vrhbmigbqh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005128205128" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrhbmigbqh" + }, + { + "Name": "integrity", + "Value": "sha256-u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.vrhbmigbqh.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "328" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrhbmigbqh" + }, + { + "Name": "integrity", + "Value": "sha256-u0yXNDq9bkEctUr1SWPWnGxjtPw+5pV7hFTcNFNlkTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sj.vrhbmigbqh.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrhbmigbqh" + }, + { + "Name": "integrity", + "Value": "sha256-IfKa6PTEAlPBVpKNRrj0hbYvfmw9BDWpVn+RIt5KqTo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.r746r9uotu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001742160279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r746r9uotu" + }, + { + "Name": "integrity", + "Value": "sha256-1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.r746r9uotu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r746r9uotu" + }, + { + "Name": "integrity", + "Value": "sha256-1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.r746r9uotu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r746r9uotu" + }, + { + "Name": "integrity", + "Value": "sha256-z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001742160279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1/lGYe05231gzyw+aVndnBnk2MSit3to8FG8EMGFHOU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z1rEJstnoX2R0VapoDcOUR03+XAz3HpKjN/oEnv6Xmo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005025125628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.v8v48j54dn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005025125628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8v48j54dn" + }, + { + "Name": "integrity", + "Value": "sha256-L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.v8v48j54dn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8v48j54dn" + }, + { + "Name": "integrity", + "Value": "sha256-L/sXs3lbGFE8xvEzLXZg7mX8aIT2w0aS2IE+sZ616go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sl.v8v48j54dn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "198" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8v48j54dn" + }, + { + "Name": "integrity", + "Value": "sha256-Y36hv8r9bW0YumXtJxYYshnYdxRfOzdoLihW6TYRUuA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.qtm0e5f3qr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000192789666" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5186" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtm0e5f3qr" + }, + { + "Name": "integrity", + "Value": "sha256-jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.qtm0e5f3qr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15892" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtm0e5f3qr" + }, + { + "Name": "integrity", + "Value": "sha256-jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.qtm0e5f3qr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5186" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qtm0e5f3qr" + }, + { + "Name": "integrity", + "Value": "sha256-oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000192789666" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5186" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15892" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jiU/7xrXE/gbj4Cyv9KiIiudymvxrdYnnlyoi/k7D1g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5186" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oiQaAYu7Do/3pzVlQY3lSB0TuLOI4z0d/6G+gYFmeSM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.ld2qq1018s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld2qq1018s" + }, + { + "Name": "integrity", + "Value": "sha256-dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.ld2qq1018s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "432" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld2qq1018s" + }, + { + "Name": "integrity", + "Value": "sha256-dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.ld2qq1018s.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ld2qq1018s" + }, + { + "Name": "integrity", + "Value": "sha256-GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003759398496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "432" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dzOCas+I+Vfdu9CBsP9EXSarFmozJjDUQOzy0OZmus4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GA0tbdvs/0f9zpSR3OoxKsC1cHwaQdJJjhnFjSFvQrQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.mqkpm6762t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqkpm6762t" + }, + { + "Name": "integrity", + "Value": "sha256-PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.mqkpm6762t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqkpm6762t" + }, + { + "Name": "integrity", + "Value": "sha256-PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.mqkpm6762t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqkpm6762t" + }, + { + "Name": "integrity", + "Value": "sha256-y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PtMKuvMp2Xc9QA/Iv7xN62L7lB9uGSuGxv/Yc97uhkc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/so.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y9fx/4cE1foOrw/env7uPve66eUK2mWbxobS7W7mIgY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.b3f14aez7v.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004524886878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3f14aez7v" + }, + { + "Name": "integrity", + "Value": "sha256-p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.b3f14aez7v.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3f14aez7v" + }, + { + "Name": "integrity", + "Value": "sha256-p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.b3f14aez7v.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b3f14aez7v" + }, + { + "Name": "integrity", + "Value": "sha256-hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004524886878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p446uPRE40RiMKXzMwp6+lgy/QQeahMss4i58VZoqjU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "220" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hBCt3fYGAaw55bypP4JGVMep/lV1DMDXk2EiHWnLrkg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.pg6r3ix4es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004310344828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pg6r3ix4es" + }, + { + "Name": "integrity", + "Value": "sha256-edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.pg6r3ix4es.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pg6r3ix4es" + }, + { + "Name": "integrity", + "Value": "sha256-edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.pg6r3ix4es.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pg6r3ix4es" + }, + { + "Name": "integrity", + "Value": "sha256-a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004310344828" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "394" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-edS3DuyjgGJJMs5IxbzuDkNeNxsXBhzoFsF7FtOA8zg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ss.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "231" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a8sVEpEphID+weyUz0cHdQCNWVwCRwYlfDzani4yxcg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.hxeb7bl40u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxeb7bl40u" + }, + { + "Name": "integrity", + "Value": "sha256-qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.hxeb7bl40u.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "932" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxeb7bl40u" + }, + { + "Name": "integrity", + "Value": "sha256-qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.hxeb7bl40u.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hxeb7bl40u" + }, + { + "Name": "integrity", + "Value": "sha256-5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "932" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qxyyEFg+JAioxR0mAilDtuGmRYX0sRgHljyh/rUijXc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/st.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5klSfdy0ecLS5QN3LFPcbPMxjLCNo2SNc/sPOa43isk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.f3y31hqkwd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041592147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24042" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f3y31hqkwd" + }, + { + "Name": "integrity", + "Value": "sha256-W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.f3y31hqkwd.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "83291" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f3y31hqkwd" + }, + { + "Name": "integrity", + "Value": "sha256-W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.f3y31hqkwd.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24042" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f3y31hqkwd" + }, + { + "Name": "integrity", + "Value": "sha256-Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041592147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24042" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "83291" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W/RZyjQJIZQpQ2Fef4ikEujpzWZRteEynxJNC2IQtz8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24042" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nn98fAAGYAMgF5RCHTEauW3+wgYHzI828o0e3ng5nl8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000211595430" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "13265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.t30wzkmz6e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000211595430" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t30wzkmz6e" + }, + { + "Name": "integrity", + "Value": "sha256-d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.t30wzkmz6e.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13265" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t30wzkmz6e" + }, + { + "Name": "integrity", + "Value": "sha256-d0SHXuwbv/uuXKCbv/T6/1W5LKBzZekLm1mTCAx0Rak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sx.t30wzkmz6e.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t30wzkmz6e" + }, + { + "Name": "integrity", + "Value": "sha256-zoIwSQ4NtN7NvByRczIngVFCON8zJzX7LCBtA5AIrW0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sx.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.3pxckek5vv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003401360544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pxckek5vv" + }, + { + "Name": "integrity", + "Value": "sha256-l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.3pxckek5vv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pxckek5vv" + }, + { + "Name": "integrity", + "Value": "sha256-l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.3pxckek5vv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pxckek5vv" + }, + { + "Name": "integrity", + "Value": "sha256-3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003401360544" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l0Hu9GZO/MsRKumem9pnF8tli9j/oHqkI/yl6lVt1s0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "293" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3fU1ZUTs9x6jilNH3SK1BjF021r0hYVApJBeKNlLVIo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.0n66rxp38o.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000445831476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n66rxp38o" + }, + { + "Name": "integrity", + "Value": "sha256-5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.0n66rxp38o.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n66rxp38o" + }, + { + "Name": "integrity", + "Value": "sha256-5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.0n66rxp38o.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0n66rxp38o" + }, + { + "Name": "integrity", + "Value": "sha256-BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000445831476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6787" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Cm90+qfoTrHjQlEWbSBtf3CnkHNNXx/Nyb+Gpg5bi0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/sz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2242" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BW+CrsvHw1DMrrO15vjWeMR7PP2L28zyhQZtZD20IhQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314762354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "14564" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.zcx5k64zcf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000314762354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcx5k64zcf" + }, + { + "Name": "integrity", + "Value": "sha256-I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.zcx5k64zcf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14564" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcx5k64zcf" + }, + { + "Name": "integrity", + "Value": "sha256-I6SbTUXiYCY2gjoebAuZoPVvA3CBIfEcbK4qZalB+2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tc.zcx5k64zcf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3176" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcx5k64zcf" + }, + { + "Name": "integrity", + "Value": "sha256-AHIoI72CzCTK42ZFFvBbbB/yHdtO2yttn6wFABKJIGA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.va4rbj0e33.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va4rbj0e33" + }, + { + "Name": "integrity", + "Value": "sha256-eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.va4rbj0e33.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va4rbj0e33" + }, + { + "Name": "integrity", + "Value": "sha256-eRoCskmofITHlflyQKRXx0OP5n+/09+ySW4GxcFgtQ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/td.va4rbj0e33.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "va4rbj0e33" + }, + { + "Name": "integrity", + "Value": "sha256-h21NHnI5Hih15x2i1wsf5WAWXtHDUVIL50b7mvE4/ko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/td.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002222222222" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.wz5g9lkqr6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002222222222" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wz5g9lkqr6" + }, + { + "Name": "integrity", + "Value": "sha256-pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.wz5g9lkqr6.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wz5g9lkqr6" + }, + { + "Name": "integrity", + "Value": "sha256-pKD7L/dl14yc2+nGYcQVFB+msifDtFuQ2GZAWrW7qpw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tf.wz5g9lkqr6.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "449" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wz5g9lkqr6" + }, + { + "Name": "integrity", + "Value": "sha256-u6k0FKnLnPVDvhh7sdveOjaU5aTlkiylrZEIFONB8mo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.7fxuxcblzy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fxuxcblzy" + }, + { + "Name": "integrity", + "Value": "sha256-TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.7fxuxcblzy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "742" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fxuxcblzy" + }, + { + "Name": "integrity", + "Value": "sha256-TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.7fxuxcblzy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7fxuxcblzy" + }, + { + "Name": "integrity", + "Value": "sha256-nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "742" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TZqQ1dnO4fH4nySGybaTZz/E96EseGCt5vkX8iM5IV8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nmdShEKe6RlN3rIl0LQ2CKcMO0sBDy+MLj80M4BWYIQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.npd350owc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004901960784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "203" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "npd350owc9" + }, + { + "Name": "integrity", + "Value": "sha256-1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.npd350owc9.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "npd350owc9" + }, + { + "Name": "integrity", + "Value": "sha256-1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.npd350owc9.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "203" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "npd350owc9" + }, + { + "Name": "integrity", + "Value": "sha256-yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004901960784" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "203" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "294" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fILeDQkaEqDftZRKPZjmMzKHaW6Pru8gqCBuepet7o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/th.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "203" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yrUtX+aUC9cnnOKvidUA8mTs5BnexSxw63PoxKW10z8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.iv27qztr60.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iv27qztr60" + }, + { + "Name": "integrity", + "Value": "sha256-sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.iv27qztr60.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1834" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iv27qztr60" + }, + { + "Name": "integrity", + "Value": "sha256-sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.iv27qztr60.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iv27qztr60" + }, + { + "Name": "integrity", + "Value": "sha256-wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1834" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sp8g/flmSIGKzdrSrzf9KQunA2hcOVR2lTPab7qjqjc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tj.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wx/ZzjnhLv/v+c8uWzZ7ihuIwCf+TXGUkBRkMy7++YM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.q9ernvvdkn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9ernvvdkn" + }, + { + "Name": "integrity", + "Value": "sha256-/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.q9ernvvdkn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9ernvvdkn" + }, + { + "Name": "integrity", + "Value": "sha256-/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.q9ernvvdkn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9ernvvdkn" + }, + { + "Name": "integrity", + "Value": "sha256-NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gOHl47LES92VDvCSGICRwH0hms/0CtqNWqWBCOiaIg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NPqgkkk0gAo0UAgz1tDZGhgfyoVFlA4IEgfdnnC5lq4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.0jnryj8yqr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002724795640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0jnryj8yqr" + }, + { + "Name": "integrity", + "Value": "sha256-JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.0jnryj8yqr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0jnryj8yqr" + }, + { + "Name": "integrity", + "Value": "sha256-JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.0jnryj8yqr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0jnryj8yqr" + }, + { + "Name": "integrity", + "Value": "sha256-LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002724795640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JMI3gaXfkfS79ciBjdC4R3WOsAP92CTSdNW81cJGtbs=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tl.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "366" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LwNwKh6U2QUoTpeAGp9T4DmXi8Rj2kkQQJyUqRJ97ho=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.rpjt1et1os.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132890365" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpjt1et1os" + }, + { + "Name": "integrity", + "Value": "sha256-D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.rpjt1et1os.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32493" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpjt1et1os" + }, + { + "Name": "integrity", + "Value": "sha256-D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.rpjt1et1os.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpjt1et1os" + }, + { + "Name": "integrity", + "Value": "sha256-RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132890365" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "32493" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D7JOk4NiiHIbaha7fDH7HvejZB+7BXdWKomK9P1P+7I=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RVlr4gcmBCteN1XpuOHpdCJMUbf/NgCvnV68nNhP0Us=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.di1m757v1i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "di1m757v1i" + }, + { + "Name": "integrity", + "Value": "sha256-24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.di1m757v1i.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "764" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "di1m757v1i" + }, + { + "Name": "integrity", + "Value": "sha256-24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.di1m757v1i.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "di1m757v1i" + }, + { + "Name": "integrity", + "Value": "sha256-pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "764" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24Obd5m1hgneIPpHsG0wRw0nSlAf3D76p3zXz2vM+yI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pGweAw3z00qcbSkm7Bpa6Ba/dWhKr4i6TWkdvPSay5c=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.bt9jbv83rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004098360656" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bt9jbv83rs" + }, + { + "Name": "integrity", + "Value": "sha256-kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.bt9jbv83rs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bt9jbv83rs" + }, + { + "Name": "integrity", + "Value": "sha256-kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.bt9jbv83rs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bt9jbv83rs" + }, + { + "Name": "integrity", + "Value": "sha256-uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004098360656" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kUBAYz4CRayKswW8GDDMSAbuBc1lFcLc8JcFizZ8zP0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/to.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "243" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uxRUFHQaNkXEAxubfOx2MfAwOfJe9jOq/IIGS+JrW8w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.475fbisc9p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475fbisc9p" + }, + { + "Name": "integrity", + "Value": "sha256-EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.475fbisc9p.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475fbisc9p" + }, + { + "Name": "integrity", + "Value": "sha256-EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.475fbisc9p.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "475fbisc9p" + }, + { + "Name": "integrity", + "Value": "sha256-zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003067484663" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EPthP6WxRoBRfGs7pjLJy2zLmbGk9yI+/BY1Ig71INY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tr.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "325" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zCa/CQMHk/JOpwACMIUxn1jge05DkmKBxkZzIhHEPe0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.p4n5mtosqz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004405286344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4n5mtosqz" + }, + { + "Name": "integrity", + "Value": "sha256-pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.p4n5mtosqz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4n5mtosqz" + }, + { + "Name": "integrity", + "Value": "sha256-pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.p4n5mtosqz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p4n5mtosqz" + }, + { + "Name": "integrity", + "Value": "sha256-71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004405286344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "320" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pxElMGdRBOnbnzjuzF16V7t1NWfYW/r7tz0xWpQyeGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "226" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-71d2bJf3lGoxxgDaQkQexRKg3fvo6tq9SyE9TsAQvRA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1799" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.v1l6q36rpu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1l6q36rpu" + }, + { + "Name": "integrity", + "Value": "sha256-ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.v1l6q36rpu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1799" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1l6q36rpu" + }, + { + "Name": "integrity", + "Value": "sha256-ExbrbvHS4SsAjOhNAceiXgiLv5q1asnagQZrC9W0iIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tv.v1l6q36rpu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1l6q36rpu" + }, + { + "Name": "integrity", + "Value": "sha256-qnXAziANXuODNvC1qkn1bcoIn6nEZQcVRlYyib7tPMA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tv.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.7bhed859mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001980198020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7bhed859mx" + }, + { + "Name": "integrity", + "Value": "sha256-IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.7bhed859mx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "959" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7bhed859mx" + }, + { + "Name": "integrity", + "Value": "sha256-IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.7bhed859mx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7bhed859mx" + }, + { + "Name": "integrity", + "Value": "sha256-xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001980198020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "959" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IyziCZbu+0ZA6LvQwzQ+vG/VrP9qVVZsbe4pqONn4mU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "504" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xKT8fiW5E0x8BZskbaBoE9t8JUFjtIqq/o6La9RrTtU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.78zkt3uw89.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78zkt3uw89" + }, + { + "Name": "integrity", + "Value": "sha256-qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.78zkt3uw89.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78zkt3uw89" + }, + { + "Name": "integrity", + "Value": "sha256-qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.78zkt3uw89.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78zkt3uw89" + }, + { + "Name": "integrity", + "Value": "sha256-MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002857142857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qQfCkeXtdGj7cORQhIJJTH3wc/8Hl37POTOXMUsGX50=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/tz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "349" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MUtKParIfx9YTZp+TfFNHTcg3sBcDJVBhZHaoAsLldo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.580k1t4glo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "580k1t4glo" + }, + { + "Name": "integrity", + "Value": "sha256-20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.580k1t4glo.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "580k1t4glo" + }, + { + "Name": "integrity", + "Value": "sha256-20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.580k1t4glo.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "580k1t4glo" + }, + { + "Name": "integrity", + "Value": "sha256-ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005235602094" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "244" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-20wO43jX0kiFu/L0Cp9gSoy1ZFc/ZrneO8EHmpjEx7g=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ua.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "190" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ufZkJiF/bY4zWH9igJhtS1+uA2/ayUPV6lpUqI9GH+4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.j7c4fhx3ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000733675715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7c4fhx3ht" + }, + { + "Name": "integrity", + "Value": "sha256-McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.j7c4fhx3ht.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3981" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7c4fhx3ht" + }, + { + "Name": "integrity", + "Value": "sha256-McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.j7c4fhx3ht.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j7c4fhx3ht" + }, + { + "Name": "integrity", + "Value": "sha256-7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000733675715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3981" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-McamDgzYApaEFRBW6vev6Z+YkF1rk9KM7bn5D0w5cCY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ug.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1362" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7EEmfo5ZXNGMW3KhHREaZ2U8kNKV0R9RhdS3ZF+G6AQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.bry31mwyvu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bry31mwyvu" + }, + { + "Name": "integrity", + "Value": "sha256-tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.bry31mwyvu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bry31mwyvu" + }, + { + "Name": "integrity", + "Value": "sha256-tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.bry31mwyvu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bry31mwyvu" + }, + { + "Name": "integrity", + "Value": "sha256-PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tws0VFIIjdotF0M5B8jFoKEdF7AdRVNoD/V7Pc5/pnI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/um.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PiMpAW0xtu4hRDJRm5CUVKa5hrK0CIoMopE9P9hxurg=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.e4ypm8jcuy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000125015627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7998" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e4ypm8jcuy" + }, + { + "Name": "integrity", + "Value": "sha256-AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.e4ypm8jcuy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19951" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e4ypm8jcuy" + }, + { + "Name": "integrity", + "Value": "sha256-AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.e4ypm8jcuy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7998" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e4ypm8jcuy" + }, + { + "Name": "integrity", + "Value": "sha256-2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000125015627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7998" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "19951" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AmHllLQ8otPpIbpQtggbI4YlFKVeUUOr/0WyzosRjHM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/un.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7998" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2KZIkR0l+exVnFhvGobgEzQXhAaYgzPbK5sT0+201z4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.is5558mia7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001428571429" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "is5558mia7" + }, + { + "Name": "integrity", + "Value": "sha256-ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.is5558mia7.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4471" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "is5558mia7" + }, + { + "Name": "integrity", + "Value": "sha256-ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.is5558mia7.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "is5558mia7" + }, + { + "Name": "integrity", + "Value": "sha256-utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001428571429" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4471" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ktFKaikPDkYb5k7xZVyaeASAxY7FD3NA8DyiokkSCY4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/us.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "699" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-utI8ozjxW4TfJiB7+rtfF3g1zu/TM/9RzAqSVbdm+G4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001295336788" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.yntmriua25.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001295336788" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yntmriua25" + }, + { + "Name": "integrity", + "Value": "sha256-Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.yntmriua25.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1746" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yntmriua25" + }, + { + "Name": "integrity", + "Value": "sha256-Ut2zrr26dyr4ZYEKj7iCFEFVkRWTPcPWDNh73Fh9FSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uy.yntmriua25.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yntmriua25" + }, + { + "Name": "integrity", + "Value": "sha256-miOO1yM4qLiQzZkTCPzpwRt8a9LyRzVwhdVmk7qCwVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uy.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.dndve020mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002212389381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dndve020mf" + }, + { + "Name": "integrity", + "Value": "sha256-J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.dndve020mf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dndve020mf" + }, + { + "Name": "integrity", + "Value": "sha256-J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.dndve020mf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dndve020mf" + }, + { + "Name": "integrity", + "Value": "sha256-VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002212389381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1484" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J7vywA0Atw2s9yHcfptBTVsEaPxtz+K81HgEj84z5QU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/uz.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VHNHn3MRxvJBdXvP1gLh8n97mb87FTeE+T3foYj4LoQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.ll9v6s2yci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000109409190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll9v6s2yci" + }, + { + "Name": "integrity", + "Value": "sha256-p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.ll9v6s2yci.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "91555" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll9v6s2yci" + }, + { + "Name": "integrity", + "Value": "sha256-p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.ll9v6s2yci.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll9v6s2yci" + }, + { + "Name": "integrity", + "Value": "sha256-bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000109409190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "91555" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p2cvfUdiPDqROU5OLhop7LDXST4xaMLxRXy5m/uKarM=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/va.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9139" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bgVoSgPaLKX6TY0X1qAtFoEN7QmfleOi9h3aUOxMM6o=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.xkuq83h6a2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xkuq83h6a2" + }, + { + "Name": "integrity", + "Value": "sha256-r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.xkuq83h6a2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "459" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xkuq83h6a2" + }, + { + "Name": "integrity", + "Value": "sha256-r164UWIm94Pkc1kJq/B3MvxZitLMgaR8BthSnHCSpKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vc.xkuq83h6a2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xkuq83h6a2" + }, + { + "Name": "integrity", + "Value": "sha256-HkcVKkcfc74xKwUWZTgNo36ljnh2Z3IoJuL80lZkYv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vc.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.0r780ndodr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r780ndodr" + }, + { + "Name": "integrity", + "Value": "sha256-PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.0r780ndodr.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r780ndodr" + }, + { + "Name": "integrity", + "Value": "sha256-PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.0r780ndodr.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r780ndodr" + }, + { + "Name": "integrity", + "Value": "sha256-fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002506265664" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1194" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PGX9PLj29nABfejQeCDgGmYONibu/ZnIjh5v78hCGNA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ve.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "398" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fAuYVUaJO1lv7k4ClJQILF4N7Ts8iUwraQ9Og3DApP0=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.mgdxrlimf0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000175469381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5698" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgdxrlimf0" + }, + { + "Name": "integrity", + "Value": "sha256-mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.mgdxrlimf0.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgdxrlimf0" + }, + { + "Name": "integrity", + "Value": "sha256-mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.mgdxrlimf0.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5698" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mgdxrlimf0" + }, + { + "Name": "integrity", + "Value": "sha256-8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000175469381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5698" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "24767" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mi79hnWZ1Mr3NBKEji/lzRBLb1FPAnAjPpmpV9oOL8E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vg.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5698" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8lRguj3KG/MbDQ+DwW3dS52QfngIemMEaS1DbIznUEo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.mtkelvilr2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000267952840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtkelvilr2" + }, + { + "Name": "integrity", + "Value": "sha256-Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.mtkelvilr2.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8770" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtkelvilr2" + }, + { + "Name": "integrity", + "Value": "sha256-Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.mtkelvilr2.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtkelvilr2" + }, + { + "Name": "integrity", + "Value": "sha256-IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000267952840" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "8770" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fi6kfuSjJBvcUva2sor+mdEHb6Q0DMZjxeyQy8kw100=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vi.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3731" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IyGS0ST+C7j4Vk2V2khsa0xWPqSQIhuZEfGpHggAbOo=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.9mwcworrwf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002923976608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9mwcworrwf" + }, + { + "Name": "integrity", + "Value": "sha256-399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.9mwcworrwf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9mwcworrwf" + }, + { + "Name": "integrity", + "Value": "sha256-399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.9mwcworrwf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9mwcworrwf" + }, + { + "Name": "integrity", + "Value": "sha256-rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002923976608" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "505" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-399/UhL9dMbn45k5it5wDTbcitYB7Rcg2Zm+Ex0UHNA=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vn.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "341" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rAsvIlxAXMFznRTCKwR5WTcuGnCZtHye4ekAKmj0Wpk=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.3bftqcjr5s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000634517766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3bftqcjr5s" + }, + { + "Name": "integrity", + "Value": "sha256-v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.3bftqcjr5s.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3bftqcjr5s" + }, + { + "Name": "integrity", + "Value": "sha256-v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.3bftqcjr5s.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3bftqcjr5s" + }, + { + "Name": "integrity", + "Value": "sha256-wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000634517766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "3790" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v+xSL3xGG39rTNumgBoz6lWW4jK1OVibmbweMwi8KrQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/vu.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1575" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wUMH0E9GDji+F3GCK/3Ln1E7V2gamkCf5qE8zwIraa4=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.kwm2uspr9t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwm2uspr9t" + }, + { + "Name": "integrity", + "Value": "sha256-jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.kwm2uspr9t.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwm2uspr9t" + }, + { + "Name": "integrity", + "Value": "sha256-jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.kwm2uspr9t.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwm2uspr9t" + }, + { + "Name": "integrity", + "Value": "sha256-cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jAFd3TGpZc7G9IqRbgqAJyZ3ANweoL6IIueRe3PGblc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/wf.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cuMlT+OcJPYQG6EcsrFgkKBv2NOf4R5FAcvTuNqPZXI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.dprrzk5mng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002341920375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dprrzk5mng" + }, + { + "Name": "integrity", + "Value": "sha256-AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.dprrzk5mng.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dprrzk5mng" + }, + { + "Name": "integrity", + "Value": "sha256-AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.dprrzk5mng.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dprrzk5mng" + }, + { + "Name": "integrity", + "Value": "sha256-4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002341920375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "700" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AWjVFUMk0VxQGlbE/o6dPDTRANF3vDxqW0YNAEJ0i9w=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ws.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4tCEOviq6p+RjBEMQchCHueGHLl47JKBMcGzQ2JaAhc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.8ihqb3rwsx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275785990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ihqb3rwsx" + }, + { + "Name": "integrity", + "Value": "sha256-IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.8ihqb3rwsx.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ihqb3rwsx" + }, + { + "Name": "integrity", + "Value": "sha256-IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.8ihqb3rwsx.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ihqb3rwsx" + }, + { + "Name": "integrity", + "Value": "sha256-CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275785990" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "9659" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IGLLXqEtyvtonzpb2C+y5X/+v3xgmqhi5p6fAeTUUNU=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/xk.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3625" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CJUP1zlxWRi89rfpOFmY88WM9zcLRGCZn5lpUn6422U=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.61y7uodp86.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61y7uodp86" + }, + { + "Name": "integrity", + "Value": "sha256-9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.61y7uodp86.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61y7uodp86" + }, + { + "Name": "integrity", + "Value": "sha256-9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.61y7uodp86.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61y7uodp86" + }, + { + "Name": "integrity", + "Value": "sha256-QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004807692308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "282" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9gmCOLHST6Tltq/n7fCvMUaeQphjWTos4NFbNn7eMdc=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/ye.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "207" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QeEMtU8SNuCIFS5qkN7+B4L4z097pO+D4lszYX2qnHY=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.0fz6w9wfgs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fz6w9wfgs" + }, + { + "Name": "integrity", + "Value": "sha256-NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.0fz6w9wfgs.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fz6w9wfgs" + }, + { + "Name": "integrity", + "Value": "sha256-NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.0fz6w9wfgs.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fz6w9wfgs" + }, + { + "Name": "integrity", + "Value": "sha256-kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004694835681" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "299" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NGMf3zMvuoTLxU07xlEyvD0HC3wz9kIlKR6yNz6Tp10=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/yt.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "212" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kjWpSg76Duiy1LFUDkDB3CM05PO9nuZ1fs7mHyY1aNI=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.6gndfamx8k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002136752137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gndfamx8k" + }, + { + "Name": "integrity", + "Value": "sha256-9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.6gndfamx8k.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gndfamx8k" + }, + { + "Name": "integrity", + "Value": "sha256-9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.6gndfamx8k.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gndfamx8k" + }, + { + "Name": "integrity", + "Value": "sha256-WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002136752137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9i4uCboT9U9CRKEQthWbu5MZILFLk/B7aiGAzbjqC0E=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/za.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "467" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WMCRwdYbfl3eIEgWs66xS0wNgIBz6snoWTYjX9CDB8M=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.f6frabnl4g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000430477830" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6frabnl4g" + }, + { + "Name": "integrity", + "Value": "sha256-aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.f6frabnl4g.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6frabnl4g" + }, + { + "Name": "integrity", + "Value": "sha256-aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.f6frabnl4g.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6frabnl4g" + }, + { + "Name": "integrity", + "Value": "sha256-X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000430477830" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "5524" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aXRtTgIiI4SnwN89dx1mbrWmspZss2c1wcns4+MgOnQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zm.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2322" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X/kp4wo/+wIUjNVyTwDobHkVMBhdMWJ7TuEgKiZVBZ8=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.apnabhteiz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000373273610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apnabhteiz" + }, + { + "Name": "integrity", + "Value": "sha256-frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.apnabhteiz.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6662" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apnabhteiz" + }, + { + "Name": "integrity", + "Value": "sha256-frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.apnabhteiz.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "apnabhteiz" + }, + { + "Name": "integrity", + "Value": "sha256-LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000373273610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6662" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-frUAQSdzd/wQmAIxkNc3in3SWgRB/FEQpcvJdv0StTE=" + } + ] + }, + { + "Route": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz", + "AssetFile": "adminlte/plugins/flag-icon-css/flags/4x3/zw.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LgvkHO1VtQgzeszSQTTWRlj0TIaXXJlFNIKFzMWZiyE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.5mptjc4rmw.js", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029876610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33470" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5mptjc4rmw" + }, + { + "Name": "integrity", + "Value": "sha256-EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/jquery.flot.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.5mptjc4rmw.js", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "105746" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5mptjc4rmw" + }, + { + "Name": "integrity", + "Value": "sha256-EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/jquery.flot.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.5mptjc4rmw.js.gz", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33470" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5mptjc4rmw" + }, + { + "Name": "integrity", + "Value": "sha256-vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/jquery.flot.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.js", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029876610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33470" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.js", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "105746" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EzZxWZ31UoTIPp/SFyBC43gga51JkORlUs3stbw8jGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/jquery.flot.js.gz", + "AssetFile": "adminlte/plugins/flot/jquery.flot.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33470" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vGpHGfUUXFgp201zAATXmXbo2IrVcl9oYb0pLijeDK4=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.16r4xj517g.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000434216240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16r4xj517g" + }, + { + "Name": "integrity", + "Value": "sha256-id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.16r4xj517g.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16r4xj517g" + }, + { + "Name": "integrity", + "Value": "sha256-id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.16r4xj517g.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "16r4xj517g" + }, + { + "Name": "integrity", + "Value": "sha256-tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000434216240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-id8rdNWBYvoHCJT8di5Xfr7anDq8dIYhTObU28GxubE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.axislabels.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tP0qT29FGBG7TqDoi+0k0jsyexQOWSq+eT+xeoYx8mk=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000745712155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4333" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.mqzhy36zkm.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000745712155" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqzhy36zkm" + }, + { + "Name": "integrity", + "Value": "sha256-Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.browser.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.mqzhy36zkm.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4333" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqzhy36zkm" + }, + { + "Name": "integrity", + "Value": "sha256-Lj09ZL+cucRbsb9zLHkubXu7mTWmQZOfRTVFS0oYeFM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.browser.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.browser.mqzhy36zkm.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mqzhy36zkm" + }, + { + "Name": "integrity", + "Value": "sha256-y2E2YI25rNRn0G8emv8ogvsKRDyO8HRLd5l110vGQCo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.browser.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498007968" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.kqo4snsln1.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498007968" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqo4snsln1" + }, + { + "Name": "integrity", + "Value": "sha256-xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.categories.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.kqo4snsln1.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqo4snsln1" + }, + { + "Name": "integrity", + "Value": "sha256-xFEuNbKIV8HTokhMibrwrEe/GqSAXU/1QojAksLFlUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.categories.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.categories.kqo4snsln1.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kqo4snsln1" + }, + { + "Name": "integrity", + "Value": "sha256-CwWUewdKrmwpj+mTgi8+8oTWIHOYMkvK+eXVXyMa61U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.categories.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.gzfq0iedcu.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000251319427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gzfq0iedcu" + }, + { + "Name": "integrity", + "Value": "sha256-lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.gzfq0iedcu.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gzfq0iedcu" + }, + { + "Name": "integrity", + "Value": "sha256-lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.gzfq0iedcu.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gzfq0iedcu" + }, + { + "Name": "integrity", + "Value": "sha256-uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000251319427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lIQ9XoahErCKob2B8sufzwYALg6P9gtQOYWcvkvdfYI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.composeImages.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uTxH8iA0/zueBQ8/ORRI+kJSGaj5R5t3HaDV9Xovq94=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000522193211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1914" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1914" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.vm9huclddm.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000522193211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1914" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vm9huclddm" + }, + { + "Name": "integrity", + "Value": "sha256-+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.vm9huclddm.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vm9huclddm" + }, + { + "Name": "integrity", + "Value": "sha256-+ZbYCdyH7Izc5XC+OJziaabIuvauQGwwGMPLJrsQxg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.vm9huclddm.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1914" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vm9huclddm" + }, + { + "Name": "integrity", + "Value": "sha256-QCn1Ze+TzCyHP75DKNuLQNn1AYK5U1xbyjnQrxHmopQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.crosshair.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.9n5xys6zbo.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000233426704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9n5xys6zbo" + }, + { + "Name": "integrity", + "Value": "sha256-1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.9n5xys6zbo.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9n5xys6zbo" + }, + { + "Name": "integrity", + "Value": "sha256-1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.9n5xys6zbo.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9n5xys6zbo" + }, + { + "Name": "integrity", + "Value": "sha256-PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000233426704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1QxRVCq1KLBKXXK/2viE9In3Cx9qkMWiVDsFpdNTDMs=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PTrn/ulxQL0reDDOzH2q/+e29R19DDfEhpYxmJKLqQw=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.2x6jlgle4t.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000300390508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3328" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2x6jlgle4t" + }, + { + "Name": "integrity", + "Value": "sha256-OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.2x6jlgle4t.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13641" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2x6jlgle4t" + }, + { + "Name": "integrity", + "Value": "sha256-OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.2x6jlgle4t.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3328" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2x6jlgle4t" + }, + { + "Name": "integrity", + "Value": "sha256-nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000300390508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3328" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13641" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OhHCEHFyxebXV8PkN7a9y2d8AZDWkYltwcYuH5cnlBo=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.errorbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3328" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nZjMSbUpu/dCQNVm/pjybUigPBkpHwonFXVFCmxOIis=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.50h5svxfo2.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449438202" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50h5svxfo2" + }, + { + "Name": "integrity", + "Value": "sha256-q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.50h5svxfo2.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50h5svxfo2" + }, + { + "Name": "integrity", + "Value": "sha256-q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.50h5svxfo2.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50h5svxfo2" + }, + { + "Name": "integrity", + "Value": "sha256-sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449438202" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q9JtLkrEZleiz1jvlSj5+x1fccVHu+s8e8KYHWj7BuU=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2224" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sQjml3htoXBPtkkjsl9FC3OT84aHpFGG6VL7JBtKcrM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001447178003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.q5ib1cr743.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001447178003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5ib1cr743" + }, + { + "Name": "integrity", + "Value": "sha256-Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.q5ib1cr743.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5ib1cr743" + }, + { + "Name": "integrity", + "Value": "sha256-Ug6kCJ73uy/fJg37SW6G1weHWI2McAzhwft1ND7mMRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.q5ib1cr743.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5ib1cr743" + }, + { + "Name": "integrity", + "Value": "sha256-W0wrQkHQTo9vB9SGYvXhR93pJjxdHaHjBsVqvOt0rXM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.flatdata.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321130379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.ke49wy7g7q.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321130379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ke49wy7g7q" + }, + { + "Name": "integrity", + "Value": "sha256-dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.hover.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.ke49wy7g7q.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12934" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ke49wy7g7q" + }, + { + "Name": "integrity", + "Value": "sha256-dClvGEROsBiWsbjpccmV5j4AQMcbq13RCmylNvxj2mI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.hover.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.hover.ke49wy7g7q.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ke49wy7g7q" + }, + { + "Name": "integrity", + "Value": "sha256-aa0MZyOrd+m3LC1r4FK3ko3wL5NvYh3PM9KX+4388vw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.hover.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000424448217" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.qt64im0b9x.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000424448217" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qt64im0b9x" + }, + { + "Name": "integrity", + "Value": "sha256-ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.image.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.qt64im0b9x.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7683" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qt64im0b9x" + }, + { + "Name": "integrity", + "Value": "sha256-ctpbGU0ljWr2W0NzdoZiRfUwaxuzpTk8X2o50BpGDUA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.image.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.image.qt64im0b9x.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qt64im0b9x" + }, + { + "Name": "integrity", + "Value": "sha256-qbY9ZSzOR7pNGEechxML2RoP2CFfTfTUCukdPj81vaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.image.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.4c2grexrg0.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000290866783" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4c2grexrg0" + }, + { + "Name": "integrity", + "Value": "sha256-1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.legend.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.4c2grexrg0.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "17152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4c2grexrg0" + }, + { + "Name": "integrity", + "Value": "sha256-1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.legend.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.4c2grexrg0.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4c2grexrg0" + }, + { + "Name": "integrity", + "Value": "sha256-FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000290866783" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "17152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1DKWFEeneolEVFYFCWMLO0KD6p7AVrHjTJHTOGABC50=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.legend.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FBn1WgWs+2GVikjrOMsJ8JWVZ6NUTCDl7Ul5ZMLOdvo=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.2mcdie4p1n.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000360620267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mcdie4p1n" + }, + { + "Name": "integrity", + "Value": "sha256-5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.2mcdie4p1n.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10169" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mcdie4p1n" + }, + { + "Name": "integrity", + "Value": "sha256-5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.2mcdie4p1n.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mcdie4p1n" + }, + { + "Name": "integrity", + "Value": "sha256-8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000360620267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10169" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5rSGEJjYeJnoCYkhVInisBPxQd9ssm8Zv45aREYCFFY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.logaxis.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2772" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8rv+AWI8yPrNyee9xmvBExUY4xrb+QL9V0X7bcQOcuE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.1x9ylo5r0q.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000164041995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x9ylo5r0q" + }, + { + "Name": "integrity", + "Value": "sha256-tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.1x9ylo5r0q.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31180" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x9ylo5r0q" + }, + { + "Name": "integrity", + "Value": "sha256-tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.1x9ylo5r0q.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x9ylo5r0q" + }, + { + "Name": "integrity", + "Value": "sha256-+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000164041995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "31180" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQv2/4xdiBN4zF9WA6Sr9Av3AbCO4yVd0NiltJk70ao=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.navigate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+mJaT44zgHdhcDpydt3QqHCFWWaFYcQiTAVeKfxI0xE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.e1qqd1jwsp.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000133725595" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e1qqd1jwsp" + }, + { + "Name": "integrity", + "Value": "sha256-rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.pie.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.e1qqd1jwsp.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32880" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e1qqd1jwsp" + }, + { + "Name": "integrity", + "Value": "sha256-rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.pie.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.e1qqd1jwsp.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e1qqd1jwsp" + }, + { + "Name": "integrity", + "Value": "sha256-XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000133725595" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "32880" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rvieDeIsAFGrBP37TiFdGnRte/GFbnuj3fNj5gqZR/U=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.pie.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XbOrW3CzTn3yT13JJbEmqGwNxTiZ/iCMq0kypluwrEE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.g83an5masv.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000692520776" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1443" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g83an5masv" + }, + { + "Name": "integrity", + "Value": "sha256-IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.resize.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.g83an5masv.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g83an5masv" + }, + { + "Name": "integrity", + "Value": "sha256-IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.resize.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.g83an5masv.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1443" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g83an5masv" + }, + { + "Name": "integrity", + "Value": "sha256-VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000692520776" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1443" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IEYEdUGdwjSD/vWR5UDSCQmtoofNA7ZEivkzUrA3ZtE=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.resize.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1443" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VWhq4ofLuCTLjAhd0p2Ysn1eOEHVIWJaT8qpvs8NLHI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.9vvso95c7b.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vvso95c7b" + }, + { + "Name": "integrity", + "Value": "sha256-q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.9vvso95c7b.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1333" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vvso95c7b" + }, + { + "Name": "integrity", + "Value": "sha256-q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.9vvso95c7b.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9vvso95c7b" + }, + { + "Name": "integrity", + "Value": "sha256-YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1333" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q0ObPlNr0gaIW9idACuY/avOF14687IV1pCx/mBk0Ok=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.saturated.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YtnZbHXD0vfcmGIdpZDXMj3dLNTohdERcE8l49LsyGY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.6kibm7xd94.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000210748156" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kibm7xd94" + }, + { + "Name": "integrity", + "Value": "sha256-ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.selection.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.6kibm7xd94.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kibm7xd94" + }, + { + "Name": "integrity", + "Value": "sha256-ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.selection.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.6kibm7xd94.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kibm7xd94" + }, + { + "Name": "integrity", + "Value": "sha256-ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000210748156" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ttS5VRbXxAkoBWxAVhmNXeaa076U0c2Lh+CoPj47c4c=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.selection.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4744" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ybJtIMRaGZVrJ2Ps1x9RCLpWjErlOTZAFGmJlnM31Zw=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.axxnew0zrl.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444247001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "axxnew0zrl" + }, + { + "Name": "integrity", + "Value": "sha256-gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.stack.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.axxnew0zrl.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8287" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "axxnew0zrl" + }, + { + "Name": "integrity", + "Value": "sha256-gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.stack.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.axxnew0zrl.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "axxnew0zrl" + }, + { + "Name": "integrity", + "Value": "sha256-zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000444247001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8287" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gubhyqAoVcCMaA7hjc080cImxcAbnAgLcG4YaJ82tiY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.stack.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2250" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zEbd4xriFOHbXmd6PL995qIlrd5HXwTSEYAEBbK0iUs=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001140250855" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.sy2ose2yjd.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001140250855" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sy2ose2yjd" + }, + { + "Name": "integrity", + "Value": "sha256-BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.sy2ose2yjd.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sy2ose2yjd" + }, + { + "Name": "integrity", + "Value": "sha256-BFmto/Xyt6xT9vG581AKQ88iJ/DskNbLoMmfk/jwYyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.symbol.sy2ose2yjd.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sy2ose2yjd" + }, + { + "Name": "integrity", + "Value": "sha256-6D0mZtXsMbhPCliSTQiGvPtUkE6lvTOgWYidCY9rCLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.symbol.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000673854447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.nyhtod8ijh.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000673854447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyhtod8ijh" + }, + { + "Name": "integrity", + "Value": "sha256-L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.nyhtod8ijh.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyhtod8ijh" + }, + { + "Name": "integrity", + "Value": "sha256-L2xGedfih7oQH4RMWnWq8LQdx/A9G+VES5ns/tUaz0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.threshold.nyhtod8ijh.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyhtod8ijh" + }, + { + "Name": "integrity", + "Value": "sha256-mFWxs7ZLCLfvOBmCbHo2Aa6FQtGm4H1bIjMt6lkCxoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.threshold.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.h7ky0urx58.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000196078431" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h7ky0urx58" + }, + { + "Name": "integrity", + "Value": "sha256-Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.time.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.h7ky0urx58.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22510" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h7ky0urx58" + }, + { + "Name": "integrity", + "Value": "sha256-Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.time.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.h7ky0urx58.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h7ky0urx58" + }, + { + "Name": "integrity", + "Value": "sha256-L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000196078431" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22510" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mz32QvtZfhzsbQ61MMsLrPuR73p6IFfTWjUhVYEaRZI=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.time.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L/YVM+54W56eT+d490VP1RxiNCDTGEvXb/9/1lUN+hs=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.ax0zhfkczq.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000545851528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ax0zhfkczq" + }, + { + "Name": "integrity", + "Value": "sha256-koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touch.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.ax0zhfkczq.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11240" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ax0zhfkczq" + }, + { + "Name": "integrity", + "Value": "sha256-koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touch.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.ax0zhfkczq.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ax0zhfkczq" + }, + { + "Name": "integrity", + "Value": "sha256-lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000545851528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11240" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-koNASJRr0wOH31XNYvGnhXMncJGAYUhVHW1TNWCBXp4=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1831" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lDu3aBIr2NutMQdfYZaj8dcMJ1Um4DOTJ8fNBNUDdNY=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.abjp8lbn7h.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000407664085" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2452" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abjp8lbn7h" + }, + { + "Name": "integrity", + "Value": "sha256-BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.abjp8lbn7h.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abjp8lbn7h" + }, + { + "Name": "integrity", + "Value": "sha256-BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.abjp8lbn7h.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2452" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "abjp8lbn7h" + }, + { + "Name": "integrity", + "Value": "sha256-zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000407664085" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2452" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13815" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BhoHqaPERnJvrZAhcnbxprqG4gsmLfaWM2+LDLIwnT0=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2452" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zOJi9s3k3GXuj5RhoSedVhD1SJYGA8aJtxS/cNzhgS0=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.9ufqof3son.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005405405405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ufqof3son" + }, + { + "Name": "integrity", + "Value": "sha256-sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.9ufqof3son.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ufqof3son" + }, + { + "Name": "integrity", + "Value": "sha256-sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.9ufqof3son.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9ufqof3son" + }, + { + "Name": "integrity", + "Value": "sha256-VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005405405405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "264" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sbY5Jm2Pk1QCOJGO3bsyssoSFWmbkXSAd2/xdN18iM4=" + } + ] + }, + { + "Route": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz", + "AssetFile": "adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VU4qU+g7FHu0UJXCzFKF+Br3I4+LE5svsDyDxSFAWw0=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074576777" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13408" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=\"" + }, + { + "Name": "ETag", + "Value": "W/\"huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "78244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13408" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.mc4uiocwf6.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074576777" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13408" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=\"" + }, + { + "Name": "ETag", + "Value": "W/\"huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mc4uiocwf6" + }, + { + "Name": "integrity", + "Value": "sha256-huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.mc4uiocwf6.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78244" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mc4uiocwf6" + }, + { + "Name": "integrity", + "Value": "sha256-huO10JorjtEsorBIGZKjpqc7odrVZL2HKy5az85w9O4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.mc4uiocwf6.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13408" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mc4uiocwf6" + }, + { + "Name": "integrity", + "Value": "sha256-Tdp6CLMJuyqUy7F1VQxFiB8OV7eXvNd6MlYIQ/ITK94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000077675936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "59348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.zkx4zk6074.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000077675936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zkx4zk6074" + }, + { + "Name": "integrity", + "Value": "sha256-/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.zkx4zk6074.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "59348" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zkx4zk6074" + }, + { + "Name": "integrity", + "Value": "sha256-/Uk1JMi+bYTPlZWfkxA2gLP6oqR8kkgtQ/8YNtjAgFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/all.min.zkx4zk6074.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/all.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12873" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zkx4zk6074" + }, + { + "Name": "integrity", + "Value": "sha256-RWa2WqDEzVKJjXyIAOaDZFKCMDuUDGOljSPOtN423fM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/all.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.c7k4vhz5a2.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003048780488" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7k4vhz5a2" + }, + { + "Name": "integrity", + "Value": "sha256-SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.c7k4vhz5a2.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7k4vhz5a2" + }, + { + "Name": "integrity", + "Value": "sha256-SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.c7k4vhz5a2.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c7k4vhz5a2" + }, + { + "Name": "integrity", + "Value": "sha256-wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003048780488" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBJLG3uCeFUEfI7UrcdyfKuWzZGNOSZGA7Zudwn7/Ik=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wUs2ec66Tr0fIPGV36fQN0p4fOuCZzVwhUDeAZ31+GM=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.8u4lzhpehz.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8u4lzhpehz" + }, + { + "Name": "integrity", + "Value": "sha256-QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.8u4lzhpehz.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "679" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8u4lzhpehz" + }, + { + "Name": "integrity", + "Value": "sha256-QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.8u4lzhpehz.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8u4lzhpehz" + }, + { + "Name": "integrity", + "Value": "sha256-GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "679" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QP2tj/BsYvC0x28waatcSRUc65ognlrj05TGkQB195E=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/brands.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GvNhOc3XhG7NaSoSn43tyPNYWk50+bBLY/SbWaKhecU=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076248570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "76575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079453361" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12585" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "57916" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12585" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.s5txor0jvn.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079453361" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12585" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s5txor0jvn" + }, + { + "Name": "integrity", + "Value": "sha256-4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.s5txor0jvn.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "57916" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s5txor0jvn" + }, + { + "Name": "integrity", + "Value": "sha256-4DUYdnA0F+sqmYXLFez5kQlm0pQefGHI85B6KDTDg4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.min.s5txor0jvn.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12585" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s5txor0jvn" + }, + { + "Name": "integrity", + "Value": "sha256-rmZispiwd3GBYSXG6KSlt4bq7FRW11JJ0+QCjfKkhfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.vkbc6hyu5u.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076248570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkbc6hyu5u" + }, + { + "Name": "integrity", + "Value": "sha256-YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.vkbc6hyu5u.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkbc6hyu5u" + }, + { + "Name": "integrity", + "Value": "sha256-YfD/F9oq8oW+RgMznbVF8iLF+CcuzL1Z0vRnfOtaFFs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/fontawesome.vkbc6hyu5u.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkbc6hyu5u" + }, + { + "Name": "integrity", + "Value": "sha256-oqTv7BFNwR5hNcNV+j97m7MS5o3r7yClojh8DDd/vtw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/fontawesome.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.28vyx365ha.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "28vyx365ha" + }, + { + "Name": "integrity", + "Value": "sha256-kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.28vyx365ha.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "28vyx365ha" + }, + { + "Name": "integrity", + "Value": "sha256-kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.28vyx365ha.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "28vyx365ha" + }, + { + "Name": "integrity", + "Value": "sha256-xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kh9BkMTvVZJLSSjyahI09i7RFRg8CFLLtVO8gXhY5qs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xvnyalmUntZsbkruHWzooC7JCCNI5+4HFITWIxkUibc=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.kwoltvt08d.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwoltvt08d" + }, + { + "Name": "integrity", + "Value": "sha256-rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.kwoltvt08d.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwoltvt08d" + }, + { + "Name": "integrity", + "Value": "sha256-rKWeW/vuHGC0r8HcUN8Czdx4xv5DfghDdwFkRVWk5EQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/regular.min.kwoltvt08d.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwoltvt08d" + }, + { + "Name": "integrity", + "Value": "sha256-z3NZgqc1cJ6glUcsZRIoHez69zhzZnbi7wj2EPwwQ7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/regular.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.7vpvdat1xv.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003012048193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vpvdat1xv" + }, + { + "Name": "integrity", + "Value": "sha256-sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.7vpvdat1xv.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vpvdat1xv" + }, + { + "Name": "integrity", + "Value": "sha256-sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.7vpvdat1xv.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7vpvdat1xv" + }, + { + "Name": "integrity", + "Value": "sha256-NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003012048193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sznu18R4atwmnIgyOmJh8B4yMT4LLb+gHlCrADIatZs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NpJy5d7IbdjsaN52LKhsVjlw1a7j9nMSK6v9hghfQfA=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003194888179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.gakb98tatp.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003194888179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gakb98tatp" + }, + { + "Name": "integrity", + "Value": "sha256-eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.gakb98tatp.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gakb98tatp" + }, + { + "Name": "integrity", + "Value": "sha256-eFTY5EaHND9xePMkVi3mhKF0aE8OksZs4A1MS/F5X8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/solid.min.gakb98tatp.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gakb98tatp" + }, + { + "Name": "integrity", + "Value": "sha256-51WDVBA8kJjvuxTDnT5Y84y6lKVValI5zhrjeEhh5rU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/solid.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599520384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8448" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.kfn6qeemzw.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599520384" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfn6qeemzw" + }, + { + "Name": "integrity", + "Value": "sha256-4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.kfn6qeemzw.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8448" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfn6qeemzw" + }, + { + "Name": "integrity", + "Value": "sha256-4JHM+Zalm4bxY5EEccYteR59nSaPn0jHJt/4Tx6CBRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.kfn6qeemzw.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1667" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfn6qeemzw" + }, + { + "Name": "integrity", + "Value": "sha256-F9CoBc6X9bqSBJlpNHOubt2KpCIUkhEUrZopR40Mv8I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645161290" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.y2ucplzyiw.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645161290" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2ucplzyiw" + }, + { + "Name": "integrity", + "Value": "sha256-SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.y2ucplzyiw.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2ucplzyiw" + }, + { + "Name": "integrity", + "Value": "sha256-SgAvhH9cNGtI8kS7pazf93vwlc11zfsVw7eh13dHac8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.y2ucplzyiw.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y2ucplzyiw" + }, + { + "Name": "integrity", + "Value": "sha256-x/Y/Vmu/6ofKP57RXUnp7o5CiVCAZqngtlRBf8LKktM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/svg-with-js.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.5q62slhz3y.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222766763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5q62slhz3y" + }, + { + "Name": "integrity", + "Value": "sha256-c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.5q62slhz3y.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "43484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5q62slhz3y" + }, + { + "Name": "integrity", + "Value": "sha256-c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.5q62slhz3y.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5q62slhz3y" + }, + { + "Name": "integrity", + "Value": "sha256-HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222766763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "43484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c5FTQveaSa6pOV2ABP0oBmPTepfJ60tmPxovFGfOlmY=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HODRVkxMgXT8I7u4wvijCxAQwrS2n+WhrfuGEF8dAgA=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236127509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "26706" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.yk8dyifsee.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236127509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yk8dyifsee" + }, + { + "Name": "integrity", + "Value": "sha256-skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.yk8dyifsee.css", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26706" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yk8dyifsee" + }, + { + "Name": "integrity", + "Value": "sha256-skbX4gsjcBh4rUXBoDmfuhxmoj+H7jzceNBCmriF2Zc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/css/v4-shims.min.yk8dyifsee.css.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yk8dyifsee" + }, + { + "Name": "integrity", + "Value": "sha256-B/FXyuYPyr3kZGtnKMmqfHA9wLdJsrZLY0XD4VBzm4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/css/v4-shims.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.30kke87jcx.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76764" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"Q8BywWye5tZ6zfpsbWaF/x5060I3t8w8E0irHBCLJq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "30kke87jcx" + }, + { + "Name": "integrity", + "Value": "sha256-Q8BywWye5tZ6zfpsbWaF/x5060I3t8w8E0irHBCLJq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134346" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"QHqXI/xxfJTih0lggNdz4Y4pw8rEniYwFyNDxlwIZKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QHqXI/xxfJTih0lggNdz4Y4pw8rEniYwFyNDxlwIZKg=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.jfkp48mz7b.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "90060" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"r/duXJhvKV1LxvgUKnjioxiIsQHC0CXbifecdfZP2Qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfkp48mz7b" + }, + { + "Name": "integrity", + "Value": "sha256-r/duXJhvKV1LxvgUKnjioxiIsQHC0CXbifecdfZP2Qs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.kvlwzfz6s8.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134346" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"QHqXI/xxfJTih0lggNdz4Y4pw8rEniYwFyNDxlwIZKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kvlwzfz6s8" + }, + { + "Name": "integrity", + "Value": "sha256-QHqXI/xxfJTih0lggNdz4Y4pw8rEniYwFyNDxlwIZKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003915963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "751262" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134040" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"BvTQCSPqJGl99d8LkphBdZkdi9JXdqAtUxu0AeOT7EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BvTQCSPqJGl99d8LkphBdZkdi9JXdqAtUxu0AeOT7EI=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.uef0e2tr7y.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134040" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"BvTQCSPqJGl99d8LkphBdZkdi9JXdqAtUxu0AeOT7EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uef0e2tr7y" + }, + { + "Name": "integrity", + "Value": "sha256-BvTQCSPqJGl99d8LkphBdZkdi9JXdqAtUxu0AeOT7EI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "90060" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"r/duXJhvKV1LxvgUKnjioxiIsQHC0CXbifecdfZP2Qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r/duXJhvKV1LxvgUKnjioxiIsQHC0CXbifecdfZP2Qs=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "76764" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"Q8BywWye5tZ6zfpsbWaF/x5060I3t8w8E0irHBCLJq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q8BywWye5tZ6zfpsbWaF/x5060I3t8w8E0irHBCLJq8=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.zldwdlk03n.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003915963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zldwdlk03n" + }, + { + "Name": "integrity", + "Value": "sha256-GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.zldwdlk03n.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "751262" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zldwdlk03n" + }, + { + "Name": "integrity", + "Value": "sha256-GRJA9vEcADWM/WWpK9ybrXSJ8b5atclRJGj9YyRgi+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.zldwdlk03n.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255364" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zldwdlk03n" + }, + { + "Name": "integrity", + "Value": "sha256-mAR+2Ke9INWOyLq6DGSnaUimJBaK7KZtghe42+G5PUI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.61m01fdy9x.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13276" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"ivxuXoQrqrFgEMLOb89I7E3tjhV5o3wfG8An4SDQSVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "61m01fdy9x" + }, + { + "Name": "integrity", + "Value": "sha256-ivxuXoQrqrFgEMLOb89I7E3tjhV5o3wfG8An4SDQSVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.8thrsep6k3.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16276" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"FMnbT/h/3gj2ewpp3VlLq22HF0gSoNvTTFmDO/7YzA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8thrsep6k3" + }, + { + "Name": "integrity", + "Value": "sha256-FMnbT/h/3gj2ewpp3VlLq22HF0gSoNvTTFmDO/7YzA4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.am4lr28t2c.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026624068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "am4lr28t2c" + }, + { + "Name": "integrity", + "Value": "sha256-XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.am4lr28t2c.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "145515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "am4lr28t2c" + }, + { + "Name": "integrity", + "Value": "sha256-XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.am4lr28t2c.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "am4lr28t2c" + }, + { + "Name": "integrity", + "Value": "sha256-dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ar3fhcnjd9.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "33736" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"xlG4pn0xkyBvYiw8Ow+8pKLycnEIxCErUsHiouhMmzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar3fhcnjd9" + }, + { + "Name": "integrity", + "Value": "sha256-xlG4pn0xkyBvYiw8Ow+8pKLycnEIxCErUsHiouhMmzE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34034" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"z4P/uM8AI71Dnf3V0C8ZVLbuAn6FiX1s/F+Qu8qewdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z4P/uM8AI71Dnf3V0C8ZVLbuAn6FiX1s/F+Qu8qewdI=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.rdeckfcbxp.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34034" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"z4P/uM8AI71Dnf3V0C8ZVLbuAn6FiX1s/F+Qu8qewdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdeckfcbxp" + }, + { + "Name": "integrity", + "Value": "sha256-z4P/uM8AI71Dnf3V0C8ZVLbuAn6FiX1s/F+Qu8qewdI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026624068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "145515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XvIfimziC0GWGLuFFZCh7V+GCZ0VnLA8Myh7iORjDF4=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37559" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dKfk7RcAo+HvG9RI5UQ1COsRGSOYKab/TF+ZAmCQmdA=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "33736" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"xlG4pn0xkyBvYiw8Ow+8pKLycnEIxCErUsHiouhMmzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xlG4pn0xkyBvYiw8Ow+8pKLycnEIxCErUsHiouhMmzE=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16276" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"FMnbT/h/3gj2ewpp3VlLq22HF0gSoNvTTFmDO/7YzA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FMnbT/h/3gj2ewpp3VlLq22HF0gSoNvTTFmDO/7YzA4=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "13276" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"ivxuXoQrqrFgEMLOb89I7E3tjhV5o3wfG8An4SDQSVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ivxuXoQrqrFgEMLOb89I7E3tjhV5o3wfG8An4SDQSVE=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.4031gq39xl.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "101652" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"dO3Bi2fEh+MvGBcZ/bNH4udwIHRGUfRG6azXvWgh4uc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4031gq39xl" + }, + { + "Name": "integrity", + "Value": "sha256-dO3Bi2fEh+MvGBcZ/bNH4udwIHRGUfRG6azXvWgh4uc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.beopicb82q.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "202744" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"PQavHzHNg6znomWgFLj7Xe4Vdw7KyPelVVUZDmJ+A8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "beopicb82q" + }, + { + "Name": "integrity", + "Value": "sha256-PQavHzHNg6znomWgFLj7Xe4Vdw7KyPelVVUZDmJ+A8I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "203030" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"dadhFZriZsUzKk8mbgelVDcS/7du4CYLB3ghlcBNw2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dadhFZriZsUzKk8mbgelVDcS/7du4CYLB3ghlcBNw2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.pvchc0s0od.eot", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "203030" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"dadhFZriZsUzKk8mbgelVDcS/7du4CYLB3ghlcBNw2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pvchc0s0od" + }, + { + "Name": "integrity", + "Value": "sha256-dadhFZriZsUzKk8mbgelVDcS/7du4CYLB3ghlcBNw2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.s11ahczc5j.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78196" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"0LQlar7XJIFYVmKXEmLqvuNFwZ+DevANfOJCOdO0Du8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s11ahczc5j" + }, + { + "Name": "integrity", + "Value": "sha256-0LQlar7XJIFYVmKXEmLqvuNFwZ+DevANfOJCOdO0Du8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003873027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "924025" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.tgs41a5efn.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003873027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgs41a5efn" + }, + { + "Name": "integrity", + "Value": "sha256-470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.tgs41a5efn.svg", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "924025" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgs41a5efn" + }, + { + "Name": "integrity", + "Value": "sha256-470aT8FxHeq+p3krZkLEGfjMSrZyIfJU7gHnXRqPaQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.tgs41a5efn.svg.gz", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258195" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgs41a5efn" + }, + { + "Name": "integrity", + "Value": "sha256-SpnMJGR9LorqQN4VpOT+eNvU2w7EGcR2QiJGT7z+7d0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "202744" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"PQavHzHNg6znomWgFLj7Xe4Vdw7KyPelVVUZDmJ+A8I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PQavHzHNg6znomWgFLj7Xe4Vdw7KyPelVVUZDmJ+A8I=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "101652" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"dO3Bi2fEh+MvGBcZ/bNH4udwIHRGUfRG6azXvWgh4uc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dO3Bi2fEh+MvGBcZ/bNH4udwIHRGUfRG6azXvWgh4uc=" + } + ] + }, + { + "Route": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2", + "AssetFile": "adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "78196" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"0LQlar7XJIFYVmKXEmLqvuNFwZ+DevANfOJCOdO0Du8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0LQlar7XJIFYVmKXEmLqvuNFwZ+DevANfOJCOdO0Du8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.ix2qxt9vnl.txt", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001524390244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix2qxt9vnl" + }, + { + "Name": "integrity", + "Value": "sha256-VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.ix2qxt9vnl.txt", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1088" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix2qxt9vnl" + }, + { + "Name": "integrity", + "Value": "sha256-VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.ix2qxt9vnl.txt.gz", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ix2qxt9vnl" + }, + { + "Name": "integrity", + "Value": "sha256-3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.txt", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001524390244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.txt", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1088" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VjaBzRmQ99RBHMRlAhhjpK5GMBuCwouFnv8ldUrzamk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/fullcalendar/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3YelYj3euNPfhrPmV6SWs4pC7kTHSyYv0ztZvumYEQ4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.iut062t4k7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000139606310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iut062t4k7" + }, + { + "Name": "integrity", + "Value": "sha256-GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.iut062t4k7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "39266" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iut062t4k7" + }, + { + "Name": "integrity", + "Value": "sha256-GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.iut062t4k7.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iut062t4k7" + }, + { + "Name": "integrity", + "Value": "sha256-U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000139606310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "39266" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GnX9ozyDCfgr2i9F+rOFA+khg5FaCrlamWI8BMJ0ZVU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U6gPPfmu8UKBWvO0Z70p/bL8OTHOqv+5+ednV3i+a3U=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168861871" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "20006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.rqk0e89iag.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000168861871" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqk0e89iag" + }, + { + "Name": "integrity", + "Value": "sha256-/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.rqk0e89iag.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqk0e89iag" + }, + { + "Name": "integrity", + "Value": "sha256-/ZgxvDj3QtyBZNLbfJaHdwbHF8R6OW82+5MT5yBsH9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales-all.min.rqk0e89iag.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales-all.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqk0e89iag" + }, + { + "Name": "integrity", + "Value": "sha256-icZazDZCZjwyeFHyTLa0wSb31cII05xz4w6dH3lpfXA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales-all.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.w0vglxpjcd.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0vglxpjcd" + }, + { + "Name": "integrity", + "Value": "sha256-8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.w0vglxpjcd.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0vglxpjcd" + }, + { + "Name": "integrity", + "Value": "sha256-8FUjjy0SUyWKemOburi5ei6lGiKbv6qdALfR05ah8cY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/af.w0vglxpjcd.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w0vglxpjcd" + }, + { + "Name": "integrity", + "Value": "sha256-+18KkkPlWVJ5UpzE2B6K7mVD4quSKLOjXdwQV78bv48=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/af.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.cq47h79u7h.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq47h79u7h" + }, + { + "Name": "integrity", + "Value": "sha256-tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-dz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.cq47h79u7h.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq47h79u7h" + }, + { + "Name": "integrity", + "Value": "sha256-tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-dz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.cq47h79u7h.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cq47h79u7h" + }, + { + "Name": "integrity", + "Value": "sha256-gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tFARXA/UlH9xMrw9Azn+FS7bn7eptHKlcZv1i7TKiz8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-dz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gvOGz82rzo5g/VQNGFErH6fEYhm0zDGZGVNSSa+k8vc=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002551020408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.m7uhvixhqq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002551020408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7uhvixhqq" + }, + { + "Name": "integrity", + "Value": "sha256-MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-kw.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.m7uhvixhqq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7uhvixhqq" + }, + { + "Name": "integrity", + "Value": "sha256-MgpcT/iRFkJd1072eBsaRbQdI8U9btoQtwEol7Plbr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-kw.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-kw.m7uhvixhqq.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7uhvixhqq" + }, + { + "Name": "integrity", + "Value": "sha256-bU2N4/jRcejzJI5jEe0R1fQrjnPPA0kBATuR7fOAHrk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-kw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.cbiqqiqwkg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002538071066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cbiqqiqwkg" + }, + { + "Name": "integrity", + "Value": "sha256-OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ly.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.cbiqqiqwkg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cbiqqiqwkg" + }, + { + "Name": "integrity", + "Value": "sha256-OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ly.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.cbiqqiqwkg.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cbiqqiqwkg" + }, + { + "Name": "integrity", + "Value": "sha256-pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002538071066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OGGQDTWzg2NQkbEvFA7qilNfi40yGaNEslESiuDAHbg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ly.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pVRyv8zmUfCwrNJwPnOXp8+5NrBVL0rCfvuTiDrxzZE=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.g60pifjvnd.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002538071066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g60pifjvnd" + }, + { + "Name": "integrity", + "Value": "sha256-2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ma.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.g60pifjvnd.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g60pifjvnd" + }, + { + "Name": "integrity", + "Value": "sha256-2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ma.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.g60pifjvnd.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g60pifjvnd" + }, + { + "Name": "integrity", + "Value": "sha256-PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002538071066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2FTuRkmScxaSVDL1h2p9vnGRv+Dzt6QtS/9olGNktVY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-ma.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "393" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PJEGbA8h6+HUXmUFWiM4xbMzYnM0cU3PnGpqnB/N/FM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.m7v12nj9bz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002557544757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7v12nj9bz" + }, + { + "Name": "integrity", + "Value": "sha256-QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-sa.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.m7v12nj9bz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7v12nj9bz" + }, + { + "Name": "integrity", + "Value": "sha256-QsJOFlPOQ0EwOo8XHsu6QGkWQiusMsmfaW+alIpeyY4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-sa.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-sa.m7v12nj9bz.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m7v12nj9bz" + }, + { + "Name": "integrity", + "Value": "sha256-/BeM8O9n2P+1fuv4mkD3ruswYJlOX3fMkezh/9mxn7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-sa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.tgwiszaemh.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgwiszaemh" + }, + { + "Name": "integrity", + "Value": "sha256-3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-tn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.tgwiszaemh.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgwiszaemh" + }, + { + "Name": "integrity", + "Value": "sha256-3ZyHTDxNwM8S/gXnn2jXg9Kvy44ZhbyG7pSsdjXQzu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-tn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar-tn.tgwiszaemh.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tgwiszaemh" + }, + { + "Name": "integrity", + "Value": "sha256-909KPYmUjFPLwqgg2u9KVWtfcpMcl++y8qL/XB0Swx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar-tn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.ry5macx31m.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002564102564" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ry5macx31m" + }, + { + "Name": "integrity", + "Value": "sha256-s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.ry5macx31m.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ry5macx31m" + }, + { + "Name": "integrity", + "Value": "sha256-s5HEPYeGV4wMzya65BMNQ4QTbv05XgRFAjiWoGUw9HQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ar.ry5macx31m.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "389" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ry5macx31m" + }, + { + "Name": "integrity", + "Value": "sha256-LsFxdgeL7igaToAg5RyDLa1CP0MjzlCan8Y80eFU5CU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002631578947" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.z9fgdc477p.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002631578947" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9fgdc477p" + }, + { + "Name": "integrity", + "Value": "sha256-V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.z9fgdc477p.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9fgdc477p" + }, + { + "Name": "integrity", + "Value": "sha256-V46j5kCG7t9Bo1jkwEPSpr1rTZFyqM/CmmEYeJ1TLAM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/az.z9fgdc477p.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "379" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9fgdc477p" + }, + { + "Name": "integrity", + "Value": "sha256-xAlNZ45t7vZe7Drd5NsdDd4CYF/hmDl3SzwRhapcP8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/az.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002427184466" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.zechni20z6.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002427184466" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zechni20z6" + }, + { + "Name": "integrity", + "Value": "sha256-G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.zechni20z6.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zechni20z6" + }, + { + "Name": "integrity", + "Value": "sha256-G3gCq4UIjOgk6lhaL//xlhfUK2sE0W4a8eeLLva3QDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bg.zechni20z6.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "411" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zechni20z6" + }, + { + "Name": "integrity", + "Value": "sha256-iBd7KrkUwSjxIrTFoCZfW41p8nOmOrpmetXrn8AWH4o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.0dhmdvzkx7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002688172043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0dhmdvzkx7" + }, + { + "Name": "integrity", + "Value": "sha256-nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.0dhmdvzkx7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0dhmdvzkx7" + }, + { + "Name": "integrity", + "Value": "sha256-nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.0dhmdvzkx7.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0dhmdvzkx7" + }, + { + "Name": "integrity", + "Value": "sha256-cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/bs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002688172043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nMUf4/3Fbp3FUVByLHYyO0paXbXt30ZQw+cvtxqox0Q=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/bs.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cS/NQPZqespstxZefdt5sP6zbgLDRwJdKiVEMCpA8WA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.0fy03hxjrf.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fy03hxjrf" + }, + { + "Name": "integrity", + "Value": "sha256-PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.0fy03hxjrf.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fy03hxjrf" + }, + { + "Name": "integrity", + "Value": "sha256-PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.0fy03hxjrf.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0fy03hxjrf" + }, + { + "Name": "integrity", + "Value": "sha256-7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002865329513" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PEW557BbRcIjRyqhcPH7Yo6aI7DEgnljbQP/9qYKEKo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ca.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7d9ifJF5vkL7k0Q9tcECs6LEot/FXwEm8yRbGp1w8f8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.6g13a2iqgg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6g13a2iqgg" + }, + { + "Name": "integrity", + "Value": "sha256-Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.6g13a2iqgg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6g13a2iqgg" + }, + { + "Name": "integrity", + "Value": "sha256-Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.6g13a2iqgg.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6g13a2iqgg" + }, + { + "Name": "integrity", + "Value": "sha256-zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Flw5uwWdzZR4OfRHxu/+alzK//YDTThTbsc8pKi8JN0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cs.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zC5zL5LpmbzPH3o2u3CUjXZDYiBnQ6X/55nAgBLl2WA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.4br3d3ead7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4br3d3ead7" + }, + { + "Name": "integrity", + "Value": "sha256-ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cy.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.4br3d3ead7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4br3d3ead7" + }, + { + "Name": "integrity", + "Value": "sha256-ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cy.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.4br3d3ead7.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4br3d3ead7" + }, + { + "Name": "integrity", + "Value": "sha256-EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/cy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ACYaUgy5V4AruuYlHlGSwPM2jdwiwJ7usvoPUDq5v+s=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/cy.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/cy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EhzkBmLIiluiXFy9HIrbwHeFYpV+aygVuQVaCC8dSwk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.5pa463m883.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pa463m883" + }, + { + "Name": "integrity", + "Value": "sha256-194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.5pa463m883.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pa463m883" + }, + { + "Name": "integrity", + "Value": "sha256-194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.5pa463m883.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5pa463m883" + }, + { + "Name": "integrity", + "Value": "sha256-/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/da.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "598" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-194ROhbLfAb71RXkWlmWQt3sPO3zdkzKPJTwoKajdiI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/da.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/AKt9HrezYOIecBeN1+NfLbDfj0HYAdkuzdSqZGzGPs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002617801047" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.p7z29lv538.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002617801047" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7z29lv538" + }, + { + "Name": "integrity", + "Value": "sha256-O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de-at.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.p7z29lv538.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7z29lv538" + }, + { + "Name": "integrity", + "Value": "sha256-O5Qqk1DPPRHcGLg5ajVyz8Bvpv40LwH14xKLetGgiOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de-at.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de-at.p7z29lv538.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de-at.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7z29lv538" + }, + { + "Name": "integrity", + "Value": "sha256-PBk7yJ2anFBifMppVBJXzGeMI8UzPhGAk9222V5+x2w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de-at.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.hescznmekm.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hescznmekm" + }, + { + "Name": "integrity", + "Value": "sha256-ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.hescznmekm.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hescznmekm" + }, + { + "Name": "integrity", + "Value": "sha256-ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.hescznmekm.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hescznmekm" + }, + { + "Name": "integrity", + "Value": "sha256-syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002659574468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ybkN84B+vu1xMXi2DYfKKH0n0Iij+dB4QmK5L0RC/7c=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/de.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-syNdQ041WGvCYuh5pv4LZAqPxNt466+ZskwE8+JS2gQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.tsqm07ar3d.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsqm07ar3d" + }, + { + "Name": "integrity", + "Value": "sha256-LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.tsqm07ar3d.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsqm07ar3d" + }, + { + "Name": "integrity", + "Value": "sha256-LQ1pFpELI3l7nk1mA4c3SenYABu4Ra8yxaPc+goSJ3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/el.tsqm07ar3d.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsqm07ar3d" + }, + { + "Name": "integrity", + "Value": "sha256-IzwGYJpKmCQDQ+VynPaLZvi66a4xfKPtoVVrHcRrjkU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/el.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.3zurwtzit1.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zurwtzit1" + }, + { + "Name": "integrity", + "Value": "sha256-ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-au.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.3zurwtzit1.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zurwtzit1" + }, + { + "Name": "integrity", + "Value": "sha256-ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-au.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.3zurwtzit1.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3zurwtzit1" + }, + { + "Name": "integrity", + "Value": "sha256-tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-au.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ccbCldKDHx6sPV6SSsntECc2B1ajmqxaGwq5ergqbK0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-au.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-au.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tGksTKlJnpFdYPH20Wo0+9HCDClTsO2OVPzYxiLZo3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.0r4hkuux8g.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r4hkuux8g" + }, + { + "Name": "integrity", + "Value": "sha256-tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-gb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.0r4hkuux8g.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r4hkuux8g" + }, + { + "Name": "integrity", + "Value": "sha256-tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-gb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.0r4hkuux8g.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0r4hkuux8g" + }, + { + "Name": "integrity", + "Value": "sha256-CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004739336493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tOFRLrAVP/eE2cKm2hDom+1NUtslCuK3P7Vydi5ssVI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-gb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CxPHF/50cvU6D+pnKkKiCwlbJvoZ1SD4uXWhYvjvJsk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.jhifd4hqa7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhifd4hqa7" + }, + { + "Name": "integrity", + "Value": "sha256-V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-nz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.jhifd4hqa7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhifd4hqa7" + }, + { + "Name": "integrity", + "Value": "sha256-V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-nz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.jhifd4hqa7.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhifd4hqa7" + }, + { + "Name": "integrity", + "Value": "sha256-/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004716981132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V1gLm4oswil0FmkguhbFo9F6RBtuwcsZCUg3jkcXxmk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/en-nz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/btjEe7APNisZ6uiAHX2/ZS5pUFNAWE66Y7WtUKb6RQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.d4p06wrrzs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d4p06wrrzs" + }, + { + "Name": "integrity", + "Value": "sha256-08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eo.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.d4p06wrrzs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d4p06wrrzs" + }, + { + "Name": "integrity", + "Value": "sha256-08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eo.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.d4p06wrrzs.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d4p06wrrzs" + }, + { + "Name": "integrity", + "Value": "sha256-JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002967359050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-08rWbS2LdCyuxvLv2wx9txxUeDnbnTc0qo/tuJywcbk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eo.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JPmOhcVOuHH/F/T7m4AXFH7b2EyHspWjLWoeP5Qjb2U=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002932551320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.m90vwo11c2.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002932551320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m90vwo11c2" + }, + { + "Name": "integrity", + "Value": "sha256-GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es-us.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.m90vwo11c2.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m90vwo11c2" + }, + { + "Name": "integrity", + "Value": "sha256-GuMqKQ+Ilsx7mUogepleqdgmAC1N/fDGgPls8ypfw80=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es-us.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es-us.m90vwo11c2.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es-us.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "340" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m90vwo11c2" + }, + { + "Name": "integrity", + "Value": "sha256-ChX812EpfdrhZE9Lsd/9XyFhTHHND3ddjORUNP7eapU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es-us.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.iij7v59v9j.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iij7v59v9j" + }, + { + "Name": "integrity", + "Value": "sha256-imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.iij7v59v9j.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iij7v59v9j" + }, + { + "Name": "integrity", + "Value": "sha256-imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.iij7v59v9j.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iij7v59v9j" + }, + { + "Name": "integrity", + "Value": "sha256-RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/es.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-imGLquqioRU59TlcrLJFe614FMRLNpPBz35TY14TIRA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/es.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RX0lmqJ8860XWaNY6NKOIob+z92XyUUtef1KpNEwcpk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.g1fmp1b1n9.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g1fmp1b1n9" + }, + { + "Name": "integrity", + "Value": "sha256-pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.g1fmp1b1n9.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g1fmp1b1n9" + }, + { + "Name": "integrity", + "Value": "sha256-pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.g1fmp1b1n9.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g1fmp1b1n9" + }, + { + "Name": "integrity", + "Value": "sha256-G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/et.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pEIqKQLmA/8LMooQvmdx2AaoCGB1O3lYHVgIQ/rStGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/et.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G9sfBTB6uHu8xPNjDVh+Jww3ATsdmWqIPSaxSo4LBzg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.suj77kpkos.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002985074627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suj77kpkos" + }, + { + "Name": "integrity", + "Value": "sha256-RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.suj77kpkos.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suj77kpkos" + }, + { + "Name": "integrity", + "Value": "sha256-RCd7Qo7jQ5djfvCYrxTczZzDZll0OzSXPO+gpDwde3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/eu.suj77kpkos.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suj77kpkos" + }, + { + "Name": "integrity", + "Value": "sha256-pDGD+vFFp9kKfmzOE4gdVX7jcweORlA0+3DGNZ9C0Bw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/eu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002481389578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.m0fxmujbx7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002481389578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0fxmujbx7" + }, + { + "Name": "integrity", + "Value": "sha256-ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.m0fxmujbx7.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0fxmujbx7" + }, + { + "Name": "integrity", + "Value": "sha256-ujcNViFAAR7q+oNiEF9ZvVI+z5eVfxsWf5T6VRvWuEI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fa.m0fxmujbx7.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m0fxmujbx7" + }, + { + "Name": "integrity", + "Value": "sha256-unjHocBFSCf1tlpT1SSfPTHlAmd6E4D/578C4HlUowQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.je7itqyfod.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002785515320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "je7itqyfod" + }, + { + "Name": "integrity", + "Value": "sha256-BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.je7itqyfod.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "623" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "je7itqyfod" + }, + { + "Name": "integrity", + "Value": "sha256-BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.je7itqyfod.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "je7itqyfod" + }, + { + "Name": "integrity", + "Value": "sha256-EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002785515320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "623" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUWFGVQQ7TSTIKqGCiuKdHxibAV4cdiC0042BpfttL4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fi.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EgNY9uy4KzdbzHep6I4k+3UpUbY2mqQ9lUZit93sjKg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003225806452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "501" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.rv723ckpdm.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003225806452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv723ckpdm" + }, + { + "Name": "integrity", + "Value": "sha256-mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.rv723ckpdm.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "501" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv723ckpdm" + }, + { + "Name": "integrity", + "Value": "sha256-mVhLexuUFm7jxzRnyIbN8ZQW0tSuPoMoUI6uPDs0glw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ca.rv723ckpdm.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rv723ckpdm" + }, + { + "Name": "integrity", + "Value": "sha256-8cCh2GpHkEipxRtnN8JqFNR+WN9tl3Bs/vcMxCVaKcc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002688172043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.tvotetbgkx.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002688172043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvotetbgkx" + }, + { + "Name": "integrity", + "Value": "sha256-OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.tvotetbgkx.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvotetbgkx" + }, + { + "Name": "integrity", + "Value": "sha256-OTWiirqNTw5FWNjcl08hUx8GoXQ73wptdPQSCY+rH2w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr-ch.tvotetbgkx.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvotetbgkx" + }, + { + "Name": "integrity", + "Value": "sha256-ppyWU9PfH9HJWewKk7sQtfReDEDDyXuTj/x768pnyG4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr-ch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.gyh6wc2ad8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002673796791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh6wc2ad8" + }, + { + "Name": "integrity", + "Value": "sha256-aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.gyh6wc2ad8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "649" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh6wc2ad8" + }, + { + "Name": "integrity", + "Value": "sha256-aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.gyh6wc2ad8.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gyh6wc2ad8" + }, + { + "Name": "integrity", + "Value": "sha256-NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/fr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002673796791" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "649" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aBDyRY8Cv9YK1dCn/bgKe3ETotuLgoi1WsnbTa0K/zk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/fr.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NntZSPTpZtD8dHy4q9Z1olOhWyIiwT/nXvAVzGIY1gg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.excdfhz4ii.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "excdfhz4ii" + }, + { + "Name": "integrity", + "Value": "sha256-sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.excdfhz4ii.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "excdfhz4ii" + }, + { + "Name": "integrity", + "Value": "sha256-sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.excdfhz4ii.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "excdfhz4ii" + }, + { + "Name": "integrity", + "Value": "sha256-vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/gl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sgXxWLtMiSg62BxoqwIKaJJP5nkWmcT4/SFxI2TW4go=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/gl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vasBokNU65YtHmEgUMe4DW8u987lmI/WV4HKuY/Qfa4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003378378378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.xe78n39hbw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003378378378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe78n39hbw" + }, + { + "Name": "integrity", + "Value": "sha256-d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.xe78n39hbw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe78n39hbw" + }, + { + "Name": "integrity", + "Value": "sha256-d/VnHa/dydLwwWHhBDkPgr/4sv8v5Z3TXsQ1QEAxgk0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/he.xe78n39hbw.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe78n39hbw" + }, + { + "Name": "integrity", + "Value": "sha256-j/8XC7jkTo/RKn5hkLu22Hnxrw90+vOuD6bIDi/RO3M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/he.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.iuzdckn7n0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002197802198" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "454" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuzdckn7n0" + }, + { + "Name": "integrity", + "Value": "sha256-Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.iuzdckn7n0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuzdckn7n0" + }, + { + "Name": "integrity", + "Value": "sha256-Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.iuzdckn7n0.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "454" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuzdckn7n0" + }, + { + "Name": "integrity", + "Value": "sha256-vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002197802198" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "454" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rn0IWi0k2aqe9PSB4jxEKCjNjuusSz5X1Y8vLgV4qr4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hi.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "454" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vk8kz7rCtKg5N2zFZZaGN1jr+qhkxOqCMhMmoUNqER0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.mxk8wq8xi2.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mxk8wq8xi2" + }, + { + "Name": "integrity", + "Value": "sha256-Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.mxk8wq8xi2.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "647" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mxk8wq8xi2" + }, + { + "Name": "integrity", + "Value": "sha256-Blzos2i4BKeIbj71QtIeP7W7uer8fr5/gSJytPDUQd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hr.mxk8wq8xi2.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mxk8wq8xi2" + }, + { + "Name": "integrity", + "Value": "sha256-BY8V+g3VJR9xccECikzwlgDKAMj1C2pEULT2E7XQex4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.7dh1p0upxg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dh1p0upxg" + }, + { + "Name": "integrity", + "Value": "sha256-K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.7dh1p0upxg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dh1p0upxg" + }, + { + "Name": "integrity", + "Value": "sha256-K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.7dh1p0upxg.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7dh1p0upxg" + }, + { + "Name": "integrity", + "Value": "sha256-52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K+c6UhBS7FoJFYzqhoMgp9Wie9ndTc7fGU2WzcAeR7w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hu.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-52UsRLl8FViRIXwijOg6wN7RaUtNs/kFuNFB2tT7cYo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.bmqxq0tuoy.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002288329519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bmqxq0tuoy" + }, + { + "Name": "integrity", + "Value": "sha256-/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hy-am.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.bmqxq0tuoy.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bmqxq0tuoy" + }, + { + "Name": "integrity", + "Value": "sha256-/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hy-am.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.bmqxq0tuoy.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bmqxq0tuoy" + }, + { + "Name": "integrity", + "Value": "sha256-Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002288329519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VDdBFkAuSOz5tBKsvb6TsjHRelsMv9/mNa4CgvJUV8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/hy-am.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vk5FVsvhtPLr//3vmXadNvaZz1XOqVoc/w1xCDObib8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "608" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.pnbacvvbr9.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002890173410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pnbacvvbr9" + }, + { + "Name": "integrity", + "Value": "sha256-e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.pnbacvvbr9.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "608" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pnbacvvbr9" + }, + { + "Name": "integrity", + "Value": "sha256-e47cEeciTnCQOA5AZBQ2Ql0Ff0jtZ9OXvFpX96GPssQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/id.pnbacvvbr9.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pnbacvvbr9" + }, + { + "Name": "integrity", + "Value": "sha256-3xgpZ5rfEyb1DnbvVsVTV0BQ0b98MPPhFfSR9PILg2M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/id.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.vg2z9d30jt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vg2z9d30jt" + }, + { + "Name": "integrity", + "Value": "sha256-wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.vg2z9d30jt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vg2z9d30jt" + }, + { + "Name": "integrity", + "Value": "sha256-wdsB+budb6S07EofWRRlQWsD98BPEL/zNBK6fsp8xJY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/is.vg2z9d30jt.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vg2z9d30jt" + }, + { + "Name": "integrity", + "Value": "sha256-8T8esQDqOacydG3/1fhJpAoqdqPaZm36M0P92jz75+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/is.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002777777778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.r0wsgqpuxs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002777777778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r0wsgqpuxs" + }, + { + "Name": "integrity", + "Value": "sha256-G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.r0wsgqpuxs.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r0wsgqpuxs" + }, + { + "Name": "integrity", + "Value": "sha256-G1lYEyew1uxIIja4i/irUnw9NWpVLgFWUscuX1gXbmk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/it.r0wsgqpuxs.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r0wsgqpuxs" + }, + { + "Name": "integrity", + "Value": "sha256-YmTfyKgmumcJWv+hXbm5EKlumMH1Ov88/0SJWze5kSg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/it.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.0cwpq890c8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0cwpq890c8" + }, + { + "Name": "integrity", + "Value": "sha256-8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.0cwpq890c8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0cwpq890c8" + }, + { + "Name": "integrity", + "Value": "sha256-8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.0cwpq890c8.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0cwpq890c8" + }, + { + "Name": "integrity", + "Value": "sha256-Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ja.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Hn12D0SulkP38pD3GtH3eJjB/SliPUR5EyFIxG2zrM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ja.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yr0jTXVc5Zxh7VrQspTA1WSg5Vq/T8o4RGjDhpTNKwA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.b7t6npklu5.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002777777778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7t6npklu5" + }, + { + "Name": "integrity", + "Value": "sha256-qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.b7t6npklu5.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7t6npklu5" + }, + { + "Name": "integrity", + "Value": "sha256-qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.b7t6npklu5.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b7t6npklu5" + }, + { + "Name": "integrity", + "Value": "sha256-2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ka.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002777777778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qSv5wPYx8ZbuWdhnCFtli1xkznKC+LMvXfODHir1K98=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ka.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2gI9bR3v8q1RaoQHTVk6uQ3PA5gSds1CTHHGMzTvqD0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002331002331" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.r4xacdohip.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002331002331" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4xacdohip" + }, + { + "Name": "integrity", + "Value": "sha256-xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.r4xacdohip.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "710" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4xacdohip" + }, + { + "Name": "integrity", + "Value": "sha256-xZl43He9kk2vkyOsDDO5FxUobRXZBWq+yirxIJog3eM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/kk.r4xacdohip.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4xacdohip" + }, + { + "Name": "integrity", + "Value": "sha256-jl2nle/icGF4BxfvvGOgw2Z1Usqx4sFvtECyWbwtNnk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/kk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003448275862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "440" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.rxss3fl7mg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003448275862" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxss3fl7mg" + }, + { + "Name": "integrity", + "Value": "sha256-fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.rxss3fl7mg.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "440" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxss3fl7mg" + }, + { + "Name": "integrity", + "Value": "sha256-fxAH+ZIhNxg5sCN63empTeA39bk1xgpp2dusc3FsXLg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ko.rxss3fl7mg.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxss3fl7mg" + }, + { + "Name": "integrity", + "Value": "sha256-o2BU1JhToaXyuFxx7ot+divFGWQfthl5bNXZp9ZBn4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ko.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.2r74gzyuj0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2r74gzyuj0" + }, + { + "Name": "integrity", + "Value": "sha256-PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.2r74gzyuj0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2r74gzyuj0" + }, + { + "Name": "integrity", + "Value": "sha256-PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.2r74gzyuj0.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2r74gzyuj0" + }, + { + "Name": "integrity", + "Value": "sha256-z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PhxQAynE+s5mx3M+3Ii9925Wh6kvl1Z0XAajQwsT7GM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lb.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z7ddRy/E/Ju9QucK2R352M+9XPsHgyP3rjKAUZAAilQ=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.4aqkwz3z0y.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4aqkwz3z0y" + }, + { + "Name": "integrity", + "Value": "sha256-9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.4aqkwz3z0y.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4aqkwz3z0y" + }, + { + "Name": "integrity", + "Value": "sha256-9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.4aqkwz3z0y.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4aqkwz3z0y" + }, + { + "Name": "integrity", + "Value": "sha256-O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9MFgT79kyifCBYKF2d4E9iZZdtAhBfNdHAgndm5OZkY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lt.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O78BTGkdgDHzN6wR6hB/Dy372EXKVrBiCl3+xPM3/KM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002732240437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.upn72lf5lw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002732240437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn72lf5lw" + }, + { + "Name": "integrity", + "Value": "sha256-Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.upn72lf5lw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn72lf5lw" + }, + { + "Name": "integrity", + "Value": "sha256-Lqap3EOfg7X11cuuGVuSLEzKP/8+7KmFvDgkBe1ajzo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/lv.upn72lf5lw.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn72lf5lw" + }, + { + "Name": "integrity", + "Value": "sha256-sittIftEGlxats5szlmuA1Mxf/BdJ1ILYzhOzqmfnCg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/lv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.29h2clzdec.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29h2clzdec" + }, + { + "Name": "integrity", + "Value": "sha256-KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.29h2clzdec.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29h2clzdec" + }, + { + "Name": "integrity", + "Value": "sha256-KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.29h2clzdec.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "29h2clzdec" + }, + { + "Name": "integrity", + "Value": "sha256-X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/mk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "564" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KswUHKVJybGRthRE/ahMevJm0wv0es/AbEPUkGechAY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/mk.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4SBT1sIJymduf4UPY4LDE11Iyn0tapd41fymKbyeoA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.g0eqoom4vh.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0eqoom4vh" + }, + { + "Name": "integrity", + "Value": "sha256-kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.g0eqoom4vh.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0eqoom4vh" + }, + { + "Name": "integrity", + "Value": "sha256-kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.g0eqoom4vh.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0eqoom4vh" + }, + { + "Name": "integrity", + "Value": "sha256-lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ms.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002702702703" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kF7/jRj/hna8r9QM4L5L9lP8KXviz3O188f+PedJrOo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ms.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lX6JvuVDGBLt/nB11a3GIFfTnCltK4M32W341W8nCkI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.asgh5r5zzt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asgh5r5zzt" + }, + { + "Name": "integrity", + "Value": "sha256-xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.asgh5r5zzt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asgh5r5zzt" + }, + { + "Name": "integrity", + "Value": "sha256-xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.asgh5r5zzt.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asgh5r5zzt" + }, + { + "Name": "integrity", + "Value": "sha256-gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002976190476" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xg9vJ2RTaYa7KkGDz+GyfSTkf4q16TDEGQNieBHj/zo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nb.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gcjYAa2ZUgAdRI4Y2f2kBC51e6v9b4ruaf9Qtx1JbYA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.4yvv8jfnwe.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002325581395" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yvv8jfnwe" + }, + { + "Name": "integrity", + "Value": "sha256-hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.4yvv8jfnwe.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yvv8jfnwe" + }, + { + "Name": "integrity", + "Value": "sha256-hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.4yvv8jfnwe.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4yvv8jfnwe" + }, + { + "Name": "integrity", + "Value": "sha256-n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ne.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002325581395" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hGhA709t24GDPwD8vjhdYScXdQB27GQKQn2RS525u7c=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ne.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n038D3kgmFu5SMiR6u5BYhZ2uqrg3LqeVkzhQ+a2dQA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.sokav5hu0e.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002941176471" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokav5hu0e" + }, + { + "Name": "integrity", + "Value": "sha256-PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.sokav5hu0e.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokav5hu0e" + }, + { + "Name": "integrity", + "Value": "sha256-PMoqFJiFAXQf4jrPEs207k0APp+Pn2E+4NLa5JBq7bI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nl.sokav5hu0e.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sokav5hu0e" + }, + { + "Name": "integrity", + "Value": "sha256-Uxm/QGmREYbTMJcEfubttDU55XkOoPnbGq4S8zJn5aw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.q0moxg5lg5.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002949852507" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q0moxg5lg5" + }, + { + "Name": "integrity", + "Value": "sha256-hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.q0moxg5lg5.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q0moxg5lg5" + }, + { + "Name": "integrity", + "Value": "sha256-hulbFsHTD8eJaqyjPu5quGy7k3ZpeL3iNyGS91XF2Uk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/nn.q0moxg5lg5.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/nn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "338" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q0moxg5lg5" + }, + { + "Name": "integrity", + "Value": "sha256-LCEnI4syJgJz5f6mgsL1cC3Etw+3CdOHMYDOOuaLZwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/nn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002739726027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.kopi2gaxho.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002739726027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kopi2gaxho" + }, + { + "Name": "integrity", + "Value": "sha256-hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.kopi2gaxho.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kopi2gaxho" + }, + { + "Name": "integrity", + "Value": "sha256-hLSYnU7mYxNoVOk2JuhIhK6AujssS+E8M8PDW6qeOHg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pl.kopi2gaxho.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kopi2gaxho" + }, + { + "Name": "integrity", + "Value": "sha256-loUTrhnSXbNle8c0Srlo1/BPwObzLSRp7Bn0q5jBxCg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003322259136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "493" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.ua1q2y614z.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003322259136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ua1q2y614z" + }, + { + "Name": "integrity", + "Value": "sha256-FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.ua1q2y614z.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "493" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ua1q2y614z" + }, + { + "Name": "integrity", + "Value": "sha256-FjPIbx+9+2FuqPGbNU2vnfLEv3PERn4OlklraaJsC/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt-br.ua1q2y614z.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ua1q2y614z" + }, + { + "Name": "integrity", + "Value": "sha256-AReGJR3xnMih/zQ9HKBvrLtmJeJS6FB36dsF7FO/ugY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt-br.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.z77arlwbkl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77arlwbkl" + }, + { + "Name": "integrity", + "Value": "sha256-D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.z77arlwbkl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77arlwbkl" + }, + { + "Name": "integrity", + "Value": "sha256-D3Jh6YJKI8RN8My/7t2IcrFC9vDXih1Py6ahCB+T+jg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/pt.z77arlwbkl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77arlwbkl" + }, + { + "Name": "integrity", + "Value": "sha256-GYEEFlIVkNZ2zwKM5l9QmOvvCFl9t0P1d6dG/hG6EuI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/pt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.4echvxs7xo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4echvxs7xo" + }, + { + "Name": "integrity", + "Value": "sha256-BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.4echvxs7xo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4echvxs7xo" + }, + { + "Name": "integrity", + "Value": "sha256-BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.4echvxs7xo.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4echvxs7xo" + }, + { + "Name": "integrity", + "Value": "sha256-G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ro.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BITfhXKVWUTDfjj8hZL8/sCzHaQe65jKaNPfUj0eqZk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ro.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G7IwR7aN4T0gUqcEwGCH7NzmEYyynLIa6lS5TF0+GsE=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.jcjhgurlwo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002358490566" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcjhgurlwo" + }, + { + "Name": "integrity", + "Value": "sha256-M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.jcjhgurlwo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcjhgurlwo" + }, + { + "Name": "integrity", + "Value": "sha256-M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.jcjhgurlwo.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jcjhgurlwo" + }, + { + "Name": "integrity", + "Value": "sha256-Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ru.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002358490566" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M7THp0550wlxpgcp35XsZ8jxZaBCERfPMAKz/sBZIEY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ru.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "423" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vpb8MmxO75An6Z2BEknAcuQ2FrT1V+l67MD3KTQmWsg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.fu7o88e7mq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002610966057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "382" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fu7o88e7mq" + }, + { + "Name": "integrity", + "Value": "sha256-twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.fu7o88e7mq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fu7o88e7mq" + }, + { + "Name": "integrity", + "Value": "sha256-twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.fu7o88e7mq.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "382" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fu7o88e7mq" + }, + { + "Name": "integrity", + "Value": "sha256-2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002610966057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "382" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-twXYNURbHgUh4FS+kJeCXpkehbANocloXHOWdMNtoEA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sk.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "382" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2dTnd2Kko2MEFoouFpiPdfobCK66QzjspZHpb5d6Ccs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.nda3cjxv8t.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002873563218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nda3cjxv8t" + }, + { + "Name": "integrity", + "Value": "sha256-S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.nda3cjxv8t.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nda3cjxv8t" + }, + { + "Name": "integrity", + "Value": "sha256-S992K8IsdTkTN23S7aw0KN8vxAgiK7KYF0bROkyCgxU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sl.nda3cjxv8t.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nda3cjxv8t" + }, + { + "Name": "integrity", + "Value": "sha256-Bw+e/MrlteICI5+NUt2BvgSipapHrmmsLCpi92NFTWE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.d69h0j6iwc.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002739726027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d69h0j6iwc" + }, + { + "Name": "integrity", + "Value": "sha256-S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.d69h0j6iwc.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d69h0j6iwc" + }, + { + "Name": "integrity", + "Value": "sha256-S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.d69h0j6iwc.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d69h0j6iwc" + }, + { + "Name": "integrity", + "Value": "sha256-bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sq.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002739726027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "651" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S6u+q2/F5KLVE3e/6bWylt715zSMJUaztjq97Aa1V3Y=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sq.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "364" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bM7rSGGoZqnNoSfp6HLRQrEc5raxttBttiYHTEMTRFE=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002352941176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.s1x7u07bi8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002352941176" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1x7u07bi8" + }, + { + "Name": "integrity", + "Value": "sha256-8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.s1x7u07bi8.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1x7u07bi8" + }, + { + "Name": "integrity", + "Value": "sha256-8E4hr6avy86AadAj/IsVsKAsYzuVwF43ey00C1UqAsA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr-cyrl.s1x7u07bi8.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "424" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s1x7u07bi8" + }, + { + "Name": "integrity", + "Value": "sha256-3LRML1d6kyeOVvv+cnzrGeFEd1FZINqGDkrJfOIsX10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr-cyrl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.oghl0hpket.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002645502646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oghl0hpket" + }, + { + "Name": "integrity", + "Value": "sha256-qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.oghl0hpket.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oghl0hpket" + }, + { + "Name": "integrity", + "Value": "sha256-qL9bPXSRGD8LjseQtG19NM6shmGHZpT/Cq4W0TPIhd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sr.oghl0hpket.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oghl0hpket" + }, + { + "Name": "integrity", + "Value": "sha256-5x0BLIkUyFUFmwg8Qr0mauWvZIHClBmgJyTRKs4oD1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.l4vda5qc5r.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l4vda5qc5r" + }, + { + "Name": "integrity", + "Value": "sha256-1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.l4vda5qc5r.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l4vda5qc5r" + }, + { + "Name": "integrity", + "Value": "sha256-1fzSJnQFzZIbXEwsB4KCFW/btIHVo5w56eOnToAbjBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/sv.l4vda5qc5r.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l4vda5qc5r" + }, + { + "Name": "integrity", + "Value": "sha256-wdaFg+/5GdqYXEWnT0vzQod1YEtgVrnJbVtdxQizCKc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/sv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002237136465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.k8ausx24d0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002237136465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k8ausx24d0" + }, + { + "Name": "integrity", + "Value": "sha256-VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ta-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.k8ausx24d0.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k8ausx24d0" + }, + { + "Name": "integrity", + "Value": "sha256-VG/mYn1J1/YayIAnRjOPxV/f/I6YWIxGT5waUI8XG/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ta-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ta-in.k8ausx24d0.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k8ausx24d0" + }, + { + "Name": "integrity", + "Value": "sha256-TsKobyV2V6PaKryLOhT7/0obc1UK21GiEDtw/AR3r+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ta-in.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "891" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.wjnluza4zo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wjnluza4zo" + }, + { + "Name": "integrity", + "Value": "sha256-fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.wjnluza4zo.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "891" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wjnluza4zo" + }, + { + "Name": "integrity", + "Value": "sha256-fFSnl8H/jqxzhhdXUPdeIA0WfHZ+QhrJNIuQhPoxOxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/th.wjnluza4zo.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wjnluza4zo" + }, + { + "Name": "integrity", + "Value": "sha256-yDvLccJxlg7m6i1MAXb4TVpqrVbGmm81uOcGp0MBQDU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/th.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.bxr034npbb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxr034npbb" + }, + { + "Name": "integrity", + "Value": "sha256-X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.bxr034npbb.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxr034npbb" + }, + { + "Name": "integrity", + "Value": "sha256-X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.bxr034npbb.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxr034npbb" + }, + { + "Name": "integrity", + "Value": "sha256-07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/tr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002915451895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7DtVN8p2MtKdbeQSsmWpyKSDXGxMy1PfX3/qTMoSaA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/tr.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "342" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-07SViN9vc8qthu4EZ2NT8+oZR9EtjzK3ISrxakYDejg=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004329004329" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "230" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "230" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.wntrlh1r3j.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.004329004329" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "230" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wntrlh1r3j" + }, + { + "Name": "integrity", + "Value": "sha256-7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ug.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.wntrlh1r3j.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "301" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wntrlh1r3j" + }, + { + "Name": "integrity", + "Value": "sha256-7LexXLPgW31FDIvLgXv2ouoIDVNSMJaWCrYbgaNxLMo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ug.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/ug.wntrlh1r3j.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/ug.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "230" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wntrlh1r3j" + }, + { + "Name": "integrity", + "Value": "sha256-RsBNYBBPKtP5gEG7HecijeZrKupE1AzpvSSXxhN7d5o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/ug.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.3ljtvj88e1.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002247191011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ljtvj88e1" + }, + { + "Name": "integrity", + "Value": "sha256-ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.3ljtvj88e1.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "753" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ljtvj88e1" + }, + { + "Name": "integrity", + "Value": "sha256-ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.3ljtvj88e1.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ljtvj88e1" + }, + { + "Name": "integrity", + "Value": "sha256-AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002247191011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "753" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZzOGvnfCaRxI5tc1uP6I116gh8FJ2hRO/+xUfEqCPYs=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uk.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AE7Xhf92l2cr5459BgUa0bSUPLgaYJX1a5qKkzdKi2A=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.mllxfi1vrr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mllxfi1vrr" + }, + { + "Name": "integrity", + "Value": "sha256-Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.mllxfi1vrr.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mllxfi1vrr" + }, + { + "Name": "integrity", + "Value": "sha256-Zk3Y9KQfbZbyJAxeE4H6flM/UiZGAwzUqVAqM6SekWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uz.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/uz.mllxfi1vrr.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/uz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mllxfi1vrr" + }, + { + "Name": "integrity", + "Value": "sha256-c0NtlnFCgX7jOP0suluK7vb+kNbdVMMAUzyeVEyfMWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/uz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.8np3gdbcuw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8np3gdbcuw" + }, + { + "Name": "integrity", + "Value": "sha256-lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.8np3gdbcuw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8np3gdbcuw" + }, + { + "Name": "integrity", + "Value": "sha256-lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.8np3gdbcuw.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8np3gdbcuw" + }, + { + "Name": "integrity", + "Value": "sha256-CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/vi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002463054187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "670" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lLjVeYcVlGg4kmoJp/gcivQitXyg1CapCufm0By8rgI=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/vi.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CgCP1lNoB3pAMUcR+E+P+X7y5pdd5d+0fI7fYjEM0zo=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "756" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.sq4mv8auob.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002008032129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sq4mv8auob" + }, + { + "Name": "integrity", + "Value": "sha256-fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.sq4mv8auob.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "756" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sq4mv8auob" + }, + { + "Name": "integrity", + "Value": "sha256-fH9aMqhBQcLaL3i/9HUTfT2qpHci3zar30Lc4Z2Ab+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-cn.sq4mv8auob.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sq4mv8auob" + }, + { + "Name": "integrity", + "Value": "sha256-OvQHKJ1QdB2WgDukbgDYnqZ7aRjEiGuTX8H+0XaBoWY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-cn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.2on267gxmp.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003322259136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2on267gxmp" + }, + { + "Name": "integrity", + "Value": "sha256-UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.2on267gxmp.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2on267gxmp" + }, + { + "Name": "integrity", + "Value": "sha256-UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.2on267gxmp.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2on267gxmp" + }, + { + "Name": "integrity", + "Value": "sha256-k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003322259136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.js", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UmbnNrFAVytoKVLF5XAFmZHSKg2FYHeGgmK5/klkKo8=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/locales/zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k+v3qVsJzA0JAnyKCOC8jf0elkIyt/MuckoPHKRAsAw=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000103327134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9677" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "41142" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.css.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9677" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.f5a8k8yevm.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000103327134" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9677" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5a8k8yevm" + }, + { + "Name": "integrity", + "Value": "sha256-YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.css" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.f5a8k8yevm.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "41142" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5a8k8yevm" + }, + { + "Name": "integrity", + "Value": "sha256-YzmaaTwUk9ZZ5m8fz1M6fShg5n/WBaIygkMbRtzOzt0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.css" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.f5a8k8yevm.css.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9677" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f5a8k8yevm" + }, + { + "Name": "integrity", + "Value": "sha256-lEqUXMCDoD4zq97V8Qem3h0ft+PlVRkGfelv8fvog8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007470436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "133860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "690093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "133860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000172057811" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24939" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.css.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.eje42taxwu.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014512735" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eje42taxwu" + }, + { + "Name": "integrity", + "Value": "sha256-mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.eje42taxwu.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "249535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eje42taxwu" + }, + { + "Name": "integrity", + "Value": "sha256-mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.eje42taxwu.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eje42taxwu" + }, + { + "Name": "integrity", + "Value": "sha256-8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.iqs1wm3w3a.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000172057811" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iqs1wm3w3a" + }, + { + "Name": "integrity", + "Value": "sha256-uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.iqs1wm3w3a.css", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24939" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iqs1wm3w3a" + }, + { + "Name": "integrity", + "Value": "sha256-uq9PNlMzB+1h01Ij9cx7zeE2OR2pLAfRw3uUUOOPKdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.iqs1wm3w3a.css.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iqs1wm3w3a" + }, + { + "Name": "integrity", + "Value": "sha256-bv4cepIUD2FFM2JzFp0FyaEDfxSPqQZjkx753Ko0IiM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014512735" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "249535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mtj/3E/DH/MQNlnNgvkcaqhgGb/jBHuBPUfxSYIWEns=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.min.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8XqbUQQh7plUfWRe2q/fV28BDDNN0OCCCqT3eJWzRus=" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.z6m2drqoda.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007470436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "133860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6m2drqoda" + }, + { + "Name": "integrity", + "Value": "sha256-2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.z6m2drqoda.js", + "AssetFile": "adminlte/plugins/fullcalendar/main.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "690093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6m2drqoda" + }, + { + "Name": "integrity", + "Value": "sha256-2/UA6vFAMAsCz4emI++3ysX95ROlHDI48sahDPnieng=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.js" + } + ] + }, + { + "Route": "adminlte/plugins/fullcalendar/main.z6m2drqoda.js.gz", + "AssetFile": "adminlte/plugins/fullcalendar/main.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "133860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z6m2drqoda" + }, + { + "Name": "integrity", + "Value": "sha256-GxARX5NNM0obcVSx6d4JM+XULNKPE1SDbnIHGQThwPA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/fullcalendar/main.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/LICENSE", + "AssetFile": "adminlte/plugins/icheck-bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"EU06I6x8hNigqEehvgVPY38b4mk9kokR4YLnGCOE318=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EU06I6x8hNigqEehvgVPY38b4mk9kokR4YLnGCOE318=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/LICENSE.rhb3eeldu5", + "AssetFile": "adminlte/plugins/icheck-bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1097" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"EU06I6x8hNigqEehvgVPY38b4mk9kokR4YLnGCOE318=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rhb3eeldu5" + }, + { + "Name": "integrity", + "Value": "sha256-EU06I6x8hNigqEehvgVPY38b4mk9kokR4YLnGCOE318=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/LICENSE" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.c05dtb4atq.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000597728631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1672" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c05dtb4atq" + }, + { + "Name": "integrity", + "Value": "sha256-nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.c05dtb4atq.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c05dtb4atq" + }, + { + "Name": "integrity", + "Value": "sha256-nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.c05dtb4atq.css.gz", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1672" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c05dtb4atq" + }, + { + "Name": "integrity", + "Value": "sha256-piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000597728631" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1672" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nGN1DgpDTrAS3DS7E5J0cL+gblWBKAMSoU/LSuY8gu8=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1672" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-piruQ+q9JqJjlLiJbR2xh2MaQzcSwJkNYRyLho4rhyA=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.b9byvgbhie.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000628535512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1590" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b9byvgbhie" + }, + { + "Name": "integrity", + "Value": "sha256-fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.b9byvgbhie.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12505" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b9byvgbhie" + }, + { + "Name": "integrity", + "Value": "sha256-fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.b9byvgbhie.css.gz", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1590" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b9byvgbhie" + }, + { + "Name": "integrity", + "Value": "sha256-r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000628535512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1590" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12505" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fxxvNo/vOD88AQfrGh88D74wgYex47k9+sa3bWmCelI=" + } + ] + }, + { + "Route": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz", + "AssetFile": "adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1590" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r4rT9YaE7pUMvDQgpFJVKVfwtBcKzFe9zkyvvxq+FZ0=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025737376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "216300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.js.gz", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030071570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "145449" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.js.gz", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.wg2grr17rp.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030071570" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wg2grr17rp" + }, + { + "Name": "integrity", + "Value": "sha256-gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.wg2grr17rp.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "145449" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wg2grr17rp" + }, + { + "Name": "integrity", + "Value": "sha256-gHivwyNrbA/i2tpNZiVaq9g2N0G7VZVmK/83sof1vYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.min.wg2grr17rp.js.gz", + "AssetFile": "adminlte/plugins/inputmask/inputmask.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "33253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wg2grr17rp" + }, + { + "Name": "integrity", + "Value": "sha256-Qb7WJDhay+cT4RgJsyaEI0dRuD4G7XUN7xKjBQZcvkw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.w2xhszpom0.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025737376" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xhszpom0" + }, + { + "Name": "integrity", + "Value": "sha256-SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.w2xhszpom0.js", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "216300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xhszpom0" + }, + { + "Name": "integrity", + "Value": "sha256-SKb8fArOcy/wHYplKh93U+u5wWYyh7A3eW+wkXZYp58=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/inputmask.w2xhszpom0.js.gz", + "AssetFile": "adminlte/plugins/inputmask/inputmask.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38853" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w2xhszpom0" + }, + { + "Name": "integrity", + "Value": "sha256-2YEd6QrXQ6y7Zjn8NcGs06CmpvLI81jdx/HbEaeZdzI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/inputmask.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.6pmpproqwq.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026458526" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37794" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pmpproqwq" + }, + { + "Name": "integrity", + "Value": "sha256-KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.6pmpproqwq.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "211284" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pmpproqwq" + }, + { + "Name": "integrity", + "Value": "sha256-KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.6pmpproqwq.js.gz", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37794" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pmpproqwq" + }, + { + "Name": "integrity", + "Value": "sha256-TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026458526" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37794" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "211284" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KkQWDigNAklu32rzwawOlfJqr/RwmWrBm3Wnjza9jU8=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.js.gz", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37794" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TIzEyyeGvSqGhGsjr7c7+n+zDABw457Xkmu7F7SE4mo=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.jb7vt9j6c3.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030902349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb7vt9j6c3" + }, + { + "Name": "integrity", + "Value": "sha256-z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.jb7vt9j6c3.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "141755" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb7vt9j6c3" + }, + { + "Name": "integrity", + "Value": "sha256-z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.jb7vt9j6c3.js.gz", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jb7vt9j6c3" + }, + { + "Name": "integrity", + "Value": "sha256-3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000030902349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.js", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "141755" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z+e4wQXpwUR2rxwhTotP9y0AQrnYxbszhb/mLqC04fw=" + } + ] + }, + { + "Route": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz", + "AssetFile": "adminlte/plugins/inputmask/jquery.inputmask.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3+Fsc7dE45wUrumGFGLZ1dHCRfb8FeSKBEOrn1iHips=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.md", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.md", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.md.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.mmwvcieyov.md", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001494768311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mmwvcieyov" + }, + { + "Name": "integrity", + "Value": "sha256-7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/License.md" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.mmwvcieyov.md", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mmwvcieyov" + }, + { + "Name": "integrity", + "Value": "sha256-7iolr2xN0oELCgYNWQtx1pqPyTTGDIBzPl1FzQfmkF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/License.md" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/License.mmwvcieyov.md.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/License.md.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "668" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mmwvcieyov" + }, + { + "Name": "integrity", + "Value": "sha256-GfVDd6qT0lVm7orHKaPUr4UR/fKxxmj7hL8ro276/pI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/License.md.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.8rg1sqmcjt.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000428449015" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rg1sqmcjt" + }, + { + "Name": "integrity", + "Value": "sha256-FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.8rg1sqmcjt.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rg1sqmcjt" + }, + { + "Name": "integrity", + "Value": "sha256-FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.8rg1sqmcjt.css.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rg1sqmcjt" + }, + { + "Name": "integrity", + "Value": "sha256-Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000428449015" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13971" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FK8gsj12aVdIxQFyK2FzXe0ayCCIoAr4Ro0DJFdmTgg=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Le+HBmQJADK0qAYFdOd0HD4HUYlGKLOz7AC2GVfXxC4=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000447828034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2232" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11084" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2232" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.z8o3sif4ix.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000447828034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2232" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8o3sif4ix" + }, + { + "Name": "integrity", + "Value": "sha256-g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.z8o3sif4ix.css", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11084" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8o3sif4ix" + }, + { + "Name": "integrity", + "Value": "sha256-g7HgoMySZyonuPwHTORf+uGHEeOm7VRI2kfXWXlJnco=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.z8o3sif4ix.css.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2232" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z8o3sif4ix" + }, + { + "Name": "integrity", + "Value": "sha256-MBTFTwDR3QAz9FSrVe6dukgixWp9iFqkN59WgoeXqk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074985003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000113882246" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "41172" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.r67c8v5kpt.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000113882246" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r67c8v5kpt" + }, + { + "Name": "integrity", + "Value": "sha256-nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.r67c8v5kpt.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "41172" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r67c8v5kpt" + }, + { + "Name": "integrity", + "Value": "sha256-nRw7loJ/hHetCbvEnHMyrrM09YBLAia9peKq9N4Y3lI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.r67c8v5kpt.js.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r67c8v5kpt" + }, + { + "Name": "integrity", + "Value": "sha256-fzwJzP+s4iQpYTtR2LOYHFL4P78V4DPmc4yimdW1yDk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.to5e2twoki.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074985003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "to5e2twoki" + }, + { + "Name": "integrity", + "Value": "sha256-sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.to5e2twoki.js", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "to5e2twoki" + }, + { + "Name": "integrity", + "Value": "sha256-sxXaOIJ9BGqcclPN4DcteaCE/vN6SSFyPifVHjoDqvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js" + } + ] + }, + { + "Route": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.to5e2twoki.js.gz", + "AssetFile": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13335" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "to5e2twoki" + }, + { + "Name": "integrity", + "Value": "sha256-EGB+SJetD5McT5GUdyIAc6WXOQXG8T81VUeWGknjr54=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.dqbrtol5ml.js", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000277469478" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqbrtol5ml" + }, + { + "Name": "integrity", + "Value": "sha256-2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-knob/jquery.knob.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.dqbrtol5ml.js", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10804" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqbrtol5ml" + }, + { + "Name": "integrity", + "Value": "sha256-2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-knob/jquery.knob.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.dqbrtol5ml.js.gz", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqbrtol5ml" + }, + { + "Name": "integrity", + "Value": "sha256-By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.js", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000277469478" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.js", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10804" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2144q+NOM/XU6ZxSqRTJ8P0W/CkY6zXc6mXYt4+mF9s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-knob/jquery.knob.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3603" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-By/qLvrmV5vcOyOyuIMXrmBYdwIVJXHoPOYTj5ZcD7M=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.chp26x1ehg.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042117677" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23742" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chp26x1ehg" + }, + { + "Name": "integrity", + "Value": "sha256-gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.chp26x1ehg.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "125783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chp26x1ehg" + }, + { + "Name": "integrity", + "Value": "sha256-gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.chp26x1ehg.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23742" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chp26x1ehg" + }, + { + "Name": "integrity", + "Value": "sha256-WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042117677" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23742" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "125783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gJg966Rahrvj34EFUlgnuP5cTQajIo8x/a3FUJ2BruQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23742" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WHte0bdpYXETCjGR+UA2AOy3MORafNVWfDcv7OP1hGc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102511533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35974" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.uvuexah0ge.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102511533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uvuexah0ge" + }, + { + "Name": "integrity", + "Value": "sha256-JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.uvuexah0ge.js", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35974" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uvuexah0ge" + }, + { + "Name": "integrity", + "Value": "sha256-JjNFqWVXaLjah7p72bPd9XuzNuKLxvLQhdFXs9APzbo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/jquery.mapael.min.uvuexah0ge.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uvuexah0ge" + }, + { + "Name": "integrity", + "Value": "sha256-zKhaUlzJew3u6vPukIWPa8m63w0iKkq041MJPlae4w8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/jquery.mapael.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.asmx3zi1yl.txt", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009009009009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "110" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asmx3zi1yl" + }, + { + "Name": "integrity", + "Value": "sha256-Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/README.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.asmx3zi1yl.txt", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "119" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asmx3zi1yl" + }, + { + "Name": "integrity", + "Value": "sha256-Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/README.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.asmx3zi1yl.txt.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "110" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asmx3zi1yl" + }, + { + "Name": "integrity", + "Value": "sha256-zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/README.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.txt", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009009009009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "110" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.txt", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "119" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zl+TtQykScO3hGdtnpyK/9Fpvpb36VoknyABli8Jjbs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/README.txt.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/README.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "110" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zJvR1XvX1KTx5gQ+rM38Sro0ulKdro4dsJDWmmQnXWk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019482923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "140117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.ew28i41z54.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019830253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ew28i41z54" + }, + { + "Name": "integrity", + "Value": "sha256-rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.ew28i41z54.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "135428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ew28i41z54" + }, + { + "Name": "integrity", + "Value": "sha256-rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.ew28i41z54.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ew28i41z54" + }, + { + "Name": "integrity", + "Value": "sha256-yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019830253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "135428" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rnIkoPiJvWwAtv+UX6oEbsnWKnsmRqg4XbOys5b02As=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "50427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yD35nAuFeCPhkdg2IeXQTjkalUNUz61V0bvcVrCKtWk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.qm73d3ji1w.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000019482923" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qm73d3ji1w" + }, + { + "Name": "integrity", + "Value": "sha256-YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.qm73d3ji1w.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "140117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qm73d3ji1w" + }, + { + "Name": "integrity", + "Value": "sha256-YhIPnxW3NPM1mJK7Ii+hvhrtpGw0LGqkxlc7syrbHKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/france_departments.qm73d3ji1w.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "51326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qm73d3ji1w" + }, + { + "Name": "integrity", + "Value": "sha256-zKCyWe180qd0XqUI1cgUDD7SmUs8zP4ahUunwnYX7DI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/france_departments.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.i306vj9ms7.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042138974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i306vj9ms7" + }, + { + "Name": "integrity", + "Value": "sha256-Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.i306vj9ms7.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "65444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i306vj9ms7" + }, + { + "Name": "integrity", + "Value": "sha256-Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.i306vj9ms7.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i306vj9ms7" + }, + { + "Name": "integrity", + "Value": "sha256-z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042138974" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "65444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Av+9D2UVbqehpETbQnW174whNdMbXq3c9HFnOjhUrUI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z5Q0f/c/tfF867TiPYZmlr8KChWsRkPPg0PbKmFd0BA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.evheh7gc71.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043673844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evheh7gc71" + }, + { + "Name": "integrity", + "Value": "sha256-+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.evheh7gc71.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "60835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evheh7gc71" + }, + { + "Name": "integrity", + "Value": "sha256-+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.evheh7gc71.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evheh7gc71" + }, + { + "Name": "integrity", + "Value": "sha256-IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043673844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "60835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+n6PsPGaxYMA1Djp8qv/YJt+ADAhRin4n+RLlhgzWTc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/usa_states.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IWZXu73coP44kiv2rO34KngCT65wgiora66U+6lPtn8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015805279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "173325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.3pgsx1su6z.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000016082859" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pgsx1su6z" + }, + { + "Name": "integrity", + "Value": "sha256-h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.3pgsx1su6z.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "166547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pgsx1su6z" + }, + { + "Name": "integrity", + "Value": "sha256-h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.3pgsx1su6z.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3pgsx1su6z" + }, + { + "Name": "integrity", + "Value": "sha256-fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000016082859" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "166547" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h+gv8nzLlspdb0q/XvZTrPpcQCSWLqWH57ZHXL05ZY8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fbSToQLpwDxYKNKNYNgJ5iVikHd4qiNVQXaWsu4rmJo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.na84ddf1hf.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015805279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "na84ddf1hf" + }, + { + "Name": "integrity", + "Value": "sha256-AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.na84ddf1hf.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "173325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "na84ddf1hf" + }, + { + "Name": "integrity", + "Value": "sha256-AUw4NUuzR13x1o/D4pHXK/WgFxdPnBbrtmnBr/Yxc3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries.na84ddf1hf.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "63269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "na84ddf1hf" + }, + { + "Name": "integrity", + "Value": "sha256-Ea9rfmdlpwkArmuy66rpSFHu7M0PSuz2Qn6y3b16To0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023970468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "41717" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "117302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "41717" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.0wt6v5yzm9.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000024807740" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "40309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wt6v5yzm9" + }, + { + "Name": "integrity", + "Value": "sha256-0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.0wt6v5yzm9.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "109274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wt6v5yzm9" + }, + { + "Name": "integrity", + "Value": "sha256-0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.0wt6v5yzm9.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "40309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wt6v5yzm9" + }, + { + "Name": "integrity", + "Value": "sha256-2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000024807740" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "40309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "109274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0G8RTq5q+lV4rJ1gqv7YOBfw65kMN0sYxRcly+6VaLM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "40309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2kvktYyRwnbwvVdzkgdz9/x6R3DNqcWVquqzAfwdrBo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.otc80bznzm.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023970468" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "41717" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otc80bznzm" + }, + { + "Name": "integrity", + "Value": "sha256-FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.otc80bznzm.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "117302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otc80bznzm" + }, + { + "Name": "integrity", + "Value": "sha256-FBEDoZWsCiSctheWiH2IsTqg2oYEag6LonPuAt/TPxU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.otc80bznzm.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "41717" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otc80bznzm" + }, + { + "Name": "integrity", + "Value": "sha256-a2zKQXtYPV/wutwG/yqXG16xWNxhe/EkXAi1b2jy3UE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.d0slb2wqlq.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038565368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25929" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0slb2wqlq" + }, + { + "Name": "integrity", + "Value": "sha256-DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.d0slb2wqlq.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87003" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0slb2wqlq" + }, + { + "Name": "integrity", + "Value": "sha256-DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.d0slb2wqlq.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25929" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d0slb2wqlq" + }, + { + "Name": "integrity", + "Value": "sha256-o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038565368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25929" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87003" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DTQgBS8DhlwQSn6vJx9DAqygGBr+Te0x7RsUVF6uOi0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25929" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o4W0AucgiX3Ve0Dz7tb+aagdwdpxT6D0Y1bbJjPM+XE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.9uk4n2qco1.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040650407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9uk4n2qco1" + }, + { + "Name": "integrity", + "Value": "sha256-f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.9uk4n2qco1.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "77872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9uk4n2qco1" + }, + { + "Name": "integrity", + "Value": "sha256-f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.9uk4n2qco1.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9uk4n2qco1" + }, + { + "Name": "integrity", + "Value": "sha256-4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040650407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "77872" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f17bZGkpaam7cnQV58ZjeZWozfMWWlut4AL+0ZDnI2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4b1xVO2uYZTZQaSk6I+spZ9C1FVS0+v9pl6yfNDWKzg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.n64vwjqr8v.txt", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001058201058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "944" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n64vwjqr8v" + }, + { + "Name": "integrity", + "Value": "sha256-ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.n64vwjqr8v.txt", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1653" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n64vwjqr8v" + }, + { + "Name": "integrity", + "Value": "sha256-ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.n64vwjqr8v.txt.gz", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "944" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n64vwjqr8v" + }, + { + "Name": "integrity", + "Value": "sha256-Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.txt", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001058201058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "944" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.txt", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1653" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ES3vgigUxZPZF5F9PfT/hoUJ9duJZgL3lYt0Zi4AJSc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/jquery-mousewheel/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "944" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wd8OtdZh5rAmGlKgXoC48iEZ1ZC8JkjFBvvAdZlxRzE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.89s8jitsue.js", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000388953715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89s8jitsue" + }, + { + "Name": "integrity", + "Value": "sha256-DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.89s8jitsue.js", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89s8jitsue" + }, + { + "Name": "integrity", + "Value": "sha256-DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.89s8jitsue.js.gz", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89s8jitsue" + }, + { + "Name": "integrity", + "Value": "sha256-z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000388953715" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DIz24BppKkgaC1RtC6YfCavfV4lzy88xSaclOFFE62I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz", + "AssetFile": "adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z6cXIHgEC/RoG3rI+qZT8qpe2S+YePCwxRH2nJZV9Nk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.txt", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956937799" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.txt", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1860" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.xc9d5xw7m0.txt", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000956937799" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xc9d5xw7m0" + }, + { + "Name": "integrity", + "Value": "sha256-X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.xc9d5xw7m0.txt", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1860" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xc9d5xw7m0" + }, + { + "Name": "integrity", + "Value": "sha256-X4bry2RIYtDpJdOJeGsMr/EJOmYitBM3mrSCFBYAypM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/LICENSE.xc9d5xw7m0.txt.gz", + "AssetFile": "adminlte/plugins/jquery-ui/LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1044" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xc9d5xw7m0" + }, + { + "Name": "integrity", + "Value": "sha256-wRmo//cg7HLyquXZER8Mb9T4BSruP9uQcSPjKHb0tWQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7006" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"6vfH7idHJ13abFPnMaENsaexX0+7RuG2nWuyBWvJ/YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6vfH7idHJ13abFPnMaENsaexX0+7RuG2nWuyBWvJ/YE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.uec99ucnzv.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7006" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"6vfH7idHJ13abFPnMaENsaexX0+7RuG2nWuyBWvJ/YE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uec99ucnzv" + }, + { + "Name": "integrity", + "Value": "sha256-6vfH7idHJ13abFPnMaENsaexX0+7RuG2nWuyBWvJ/YE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7074" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"XQQFHf2dLXQDVUBPmKaD0ewP6y/KfXblM8Gm5c6S3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XQQFHf2dLXQDVUBPmKaD0ewP6y/KfXblM8Gm5c6S3S4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.x3t87eylfv.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7074" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"XQQFHf2dLXQDVUBPmKaD0ewP6y/KfXblM8Gm5c6S3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x3t87eylfv" + }, + { + "Name": "integrity", + "Value": "sha256-XQQFHf2dLXQDVUBPmKaD0ewP6y/KfXblM8Gm5c6S3S4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.9hfxqyh7vb.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4676" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"nb5KDQP+7W9l6yVgoKi0ukJkVF7o/THBdjo7IZ0DKNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hfxqyh7vb" + }, + { + "Name": "integrity", + "Value": "sha256-nb5KDQP+7W9l6yVgoKi0ukJkVF7o/THBdjo7IZ0DKNY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4676" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"nb5KDQP+7W9l6yVgoKi0ukJkVF7o/THBdjo7IZ0DKNY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nb5KDQP+7W9l6yVgoKi0ukJkVF7o/THBdjo7IZ0DKNY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "7013" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"51snIR4W/PlHFRaAAbtwVco3bUb5KBELo9CCUjJFLlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-51snIR4W/PlHFRaAAbtwVco3bUb5KBELo9CCUjJFLlo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.v63r3kix5i.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7013" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"51snIR4W/PlHFRaAAbtwVco3bUb5KBELo9CCUjJFLlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v63r3kix5i" + }, + { + "Name": "integrity", + "Value": "sha256-51snIR4W/PlHFRaAAbtwVco3bUb5KBELo9CCUjJFLlo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AokVddQ1jp7d4+QtlAV/jp+CqdZDdvce6GzvFJ0wU34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AokVddQ1jp7d4+QtlAV/jp+CqdZDdvce6GzvFJ0wU34=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.uoc309pzlq.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4632" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"AokVddQ1jp7d4+QtlAV/jp+CqdZDdvce6GzvFJ0wU34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uoc309pzlq" + }, + { + "Name": "integrity", + "Value": "sha256-AokVddQ1jp7d4+QtlAV/jp+CqdZDdvce6GzvFJ0wU34=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6313" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"trBt7vK5JMw4NdY/SIPUeIJzSjPnGyEtkXpozt47jp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trBt7vK5JMw4NdY/SIPUeIJzSjPnGyEtkXpozt47jp0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.u68xhm8707.png", + "AssetFile": "adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6313" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"trBt7vK5JMw4NdY/SIPUeIJzSjPnGyEtkXpozt47jp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u68xhm8707" + }, + { + "Name": "integrity", + "Value": "sha256-trBt7vK5JMw4NdY/SIPUeIJzSjPnGyEtkXpozt47jp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000114181320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "38638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.hn1acl2vk2.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000114181320" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hn1acl2vk2" + }, + { + "Name": "integrity", + "Value": "sha256-3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.hn1acl2vk2.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "38638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hn1acl2vk2" + }, + { + "Name": "integrity", + "Value": "sha256-3Qb+9rcgEQpHtYtg/GSOnRkn5HXxv3FyxwnlGphSEv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.hn1acl2vk2.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8757" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hn1acl2vk2" + }, + { + "Name": "integrity", + "Value": "sha256-oOM87vE1Lj/Obw+3OJogZkT90dv002hae9Pfnx6/28U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007913020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "126373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "539419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.js.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "126373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.6tvjqji63q.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000126550240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7901" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6tvjqji63q" + }, + { + "Name": "integrity", + "Value": "sha256-yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.6tvjqji63q.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "32082" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6tvjqji63q" + }, + { + "Name": "integrity", + "Value": "sha256-yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.6tvjqji63q.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7901" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6tvjqji63q" + }, + { + "Name": "integrity", + "Value": "sha256-Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000126550240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7901" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "32082" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yk3yv0AKQth1LhFfAzZqkLK07Qay2p70KdQf2l8VcF4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7901" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y9Ss5adjryaf6/gXDj1CrGJmQ9PObiIK0TMJ4C4d0B8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014692270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "253681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.r5thwmdy4j.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014692270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r5thwmdy4j" + }, + { + "Name": "integrity", + "Value": "sha256-IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.r5thwmdy4j.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "253681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r5thwmdy4j" + }, + { + "Name": "integrity", + "Value": "sha256-IcrMqOnrmPHzJwK0F2aF8vlBr1GrW8fPiMy1Q1obsIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.min.r5thwmdy4j.js.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r5thwmdy4j" + }, + { + "Name": "integrity", + "Value": "sha256-XEMXerNpuWOQZdvbvA5F+QFGBlzTgFiPuFzXkQ9OFJw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.rc8fhhobti.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007913020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "126373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rc8fhhobti" + }, + { + "Name": "integrity", + "Value": "sha256-C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.rc8fhhobti.js", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "539419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rc8fhhobti" + }, + { + "Name": "integrity", + "Value": "sha256-C61+OoAxJy904l6R1z9Qo+kPlybfMLOII7lPlW6oLGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.rc8fhhobti.js.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "126373" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rc8fhhobti" + }, + { + "Name": "integrity", + "Value": "sha256-C6NJauNpEkICOgQYuiTg7FOH/b61u5tSJnSnWZEPJhs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.5y82qukdf7.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000179340029" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5y82qukdf7" + }, + { + "Name": "integrity", + "Value": "sha256-M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.5y82qukdf7.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19591" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5y82qukdf7" + }, + { + "Name": "integrity", + "Value": "sha256-M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.5y82qukdf7.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5y82qukdf7" + }, + { + "Name": "integrity", + "Value": "sha256-BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000179340029" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19591" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M1Szch8CbVHFNKAr2pxcnDLSeqOWBQK9y/PXsTyjy/k=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BkSGIA8OtjZX6704VkqmKFLG8yKIJT6+Hxj8prcKNTk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000201531640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15552" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.j68t7c56lp.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000201531640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j68t7c56lp" + }, + { + "Name": "integrity", + "Value": "sha256-VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.j68t7c56lp.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15552" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j68t7c56lp" + }, + { + "Name": "integrity", + "Value": "sha256-VUpenperSZyXaQ63G7ocZjKNooEkSS/t+j7uamXVLr0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.j68t7c56lp.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4961" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j68t7c56lp" + }, + { + "Name": "integrity", + "Value": "sha256-G7yzzNhFLZaa6KfEBNGg9J0bM1wedLxUi/1OgZ6fJlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.structure.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000292226768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.dzjireh2hs.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000292226768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzjireh2hs" + }, + { + "Name": "integrity", + "Value": "sha256-V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.dzjireh2hs.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19114" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzjireh2hs" + }, + { + "Name": "integrity", + "Value": "sha256-V0dM1qaYY1TXdJIc/ls1Tq3fjX8d9C5CQQx4Rspj140=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.dzjireh2hs.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3421" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzjireh2hs" + }, + { + "Name": "integrity", + "Value": "sha256-SqzIYZ3AHDA8YI/G+MbQeeGEUioPr6rCQe2XAn/CvdU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423190859" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.ja4qyjixxa.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423190859" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ja4qyjixxa" + }, + { + "Name": "integrity", + "Value": "sha256-xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.ja4qyjixxa.css", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13853" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ja4qyjixxa" + }, + { + "Name": "integrity", + "Value": "sha256-xXmtpmfzv5y0KPH0yCbqBRdK6nZH2hkIKlrQWpbHPYE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.ja4qyjixxa.css.gz", + "AssetFile": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2362" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ja4qyjixxa" + }, + { + "Name": "integrity", + "Value": "sha256-jlj5M7hEA+2LxIF8u57Khf7Zy3sjP74RLqqsy607JAw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-ui/jquery-ui.theme.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.967dw1pkt2.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071674312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "967dw1pkt2" + }, + { + "Name": "integrity", + "Value": "sha256-b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.967dw1pkt2.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "967dw1pkt2" + }, + { + "Name": "integrity", + "Value": "sha256-b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.967dw1pkt2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "967dw1pkt2" + }, + { + "Name": "integrity", + "Value": "sha256-xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071674312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b0bdFCMUXKDTkd251KgwoErbtlnWksxMeN3761tjh6Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xS1EiKjzeZUE5Qk3oXsrY1wvpuFMQRv2twQ8JMbmbiw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.9kbpzt1kt8.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000156201187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9kbpzt1kt8" + }, + { + "Name": "integrity", + "Value": "sha256-N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.9kbpzt1kt8.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "22662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9kbpzt1kt8" + }, + { + "Name": "integrity", + "Value": "sha256-N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.9kbpzt1kt8.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9kbpzt1kt8" + }, + { + "Name": "integrity", + "Value": "sha256-K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000156201187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "22662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N1IfhYte5WiLyooEe6+OcBRxFSkskLCMIRJgWaC1bLM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/additional-methods.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K/lS7Yf20s04t/oaV/PdFcSdiO2et1V/l0YzUi5bHkI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072669137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000127339870" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.shik8kp3s2.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000127339870" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shik8kp3s2" + }, + { + "Name": "integrity", + "Value": "sha256-oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.shik8kp3s2.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shik8kp3s2" + }, + { + "Name": "integrity", + "Value": "sha256-oMKnodIz4JBPxW2sgl0sk5uTTi6Op4u+2VuJmLj0ImM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.min.shik8kp3s2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "shik8kp3s2" + }, + { + "Name": "integrity", + "Value": "sha256-LW+e4hbS1Df1OjLUUIP+BKSwwCXb6yNK3xgdkCaXDBM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.xxgkuezd9q.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000072669137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxgkuezd9q" + }, + { + "Name": "integrity", + "Value": "sha256-xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.xxgkuezd9q.js", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "52599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxgkuezd9q" + }, + { + "Name": "integrity", + "Value": "sha256-xdhdBUiGxbFDjIluBhI9XRig9TDy2jxGJxBHsbQM7wA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/jquery.validate.xxgkuezd9q.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/jquery.validate.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxgkuezd9q" + }, + { + "Name": "integrity", + "Value": "sha256-FjjzaENKXyFjsJDuBPP6dxV+qhcIgtgr0IHJ4bJLNo0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/jquery.validate.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.tqdpo0bnzv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqdpo0bnzv" + }, + { + "Name": "integrity", + "Value": "sha256-1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.tqdpo0bnzv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqdpo0bnzv" + }, + { + "Name": "integrity", + "Value": "sha256-1ZmVWMQbkL4DSvJHTX/qxJlogmwqtZ8FzdmsGUmcMI8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.min.tqdpo0bnzv.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqdpo0bnzv" + }, + { + "Name": "integrity", + "Value": "sha256-n0yfVtVibMImzvX+A/6xzi5+WmmxykCdBJCoqqJrwNg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.r8qe0m4dxu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=\"" + }, + { + "Name": "ETag", + "Value": "W/\"peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r8qe0m4dxu" + }, + { + "Name": "integrity", + "Value": "sha256-peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.r8qe0m4dxu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r8qe0m4dxu" + }, + { + "Name": "integrity", + "Value": "sha256-peu8HNv0bne+bxFF/khAgjzt9AnVaQL91g7BKWVd4to=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ar.r8qe0m4dxu.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r8qe0m4dxu" + }, + { + "Name": "integrity", + "Value": "sha256-Dtotnt6po1qANIWAAml/qt3Z51dZHP3rOXMANzMpN34=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.kykp5n0hdz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kykp5n0hdz" + }, + { + "Name": "integrity", + "Value": "sha256-pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.kykp5n0hdz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kykp5n0hdz" + }, + { + "Name": "integrity", + "Value": "sha256-pKidZ7jiCgnZgAJ63iEsELl+oMYuyolIXQOMORwGZYI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.kykp5n0hdz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kykp5n0hdz" + }, + { + "Name": "integrity", + "Value": "sha256-ZK/IfkVjvChb/kij4/XdVqWNDZtVGUmVBlQTBOVDxSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.hyduua47rk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyduua47rk" + }, + { + "Name": "integrity", + "Value": "sha256-KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.hyduua47rk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1576" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyduua47rk" + }, + { + "Name": "integrity", + "Value": "sha256-KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.hyduua47rk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyduua47rk" + }, + { + "Name": "integrity", + "Value": "sha256-rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1576" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KeiLkCL1L/FVWkcEyuI5IDA5oaZ3GP9pFzmuHRALbDw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_az.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rm8GUFRCQ/miK46/5T3oXamgYYZvxC9rmwYIAf6pYX0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.k9lo1i3hka.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001396648045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9lo1i3hka" + }, + { + "Name": "integrity", + "Value": "sha256-qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.k9lo1i3hka.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9lo1i3hka" + }, + { + "Name": "integrity", + "Value": "sha256-qBr2OmRXzMUpgRW+91U7lTMoWfpuBhAcUqW9Oumw4ss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.k9lo1i3hka.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "715" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k9lo1i3hka" + }, + { + "Name": "integrity", + "Value": "sha256-5BPK4MxdFub6sCHx15MLMjzBqtdaTOPPCstVoyAqGDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.91pw6v2u8f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001479289941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91pw6v2u8f" + }, + { + "Name": "integrity", + "Value": "sha256-vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.91pw6v2u8f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91pw6v2u8f" + }, + { + "Name": "integrity", + "Value": "sha256-vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.91pw6v2u8f.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "91pw6v2u8f" + }, + { + "Name": "integrity", + "Value": "sha256-j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001479289941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vYjI7h8RKTYAHkEoly18E6OonWBBQBDjTPvdYVN42EQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bg.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j48y9OyHcv38PzoSKXx/PrFxLVX+8EocV+GqgoVD4fU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.7wwmyxgz7g.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001287001287" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7wwmyxgz7g" + }, + { + "Name": "integrity", + "Value": "sha256-+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.7wwmyxgz7g.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7wwmyxgz7g" + }, + { + "Name": "integrity", + "Value": "sha256-+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.7wwmyxgz7g.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7wwmyxgz7g" + }, + { + "Name": "integrity", + "Value": "sha256-UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001287001287" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+WlumRg6aLTuDgy7twabRSShefiAwBF3vKPwCK77LlY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UjoWAUUPnUl8ghGDQpMmFPNWue0vEHbFSVJGwgEeMDg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.6izjqltbzz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001329787234" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6izjqltbzz" + }, + { + "Name": "integrity", + "Value": "sha256-fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.6izjqltbzz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6izjqltbzz" + }, + { + "Name": "integrity", + "Value": "sha256-fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.6izjqltbzz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6izjqltbzz" + }, + { + "Name": "integrity", + "Value": "sha256-7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001329787234" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fpiofhUZert+Xplut/1c+84GSdU1FLtsWTchx5cNXb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7NPXngYD2vDlJSSWezku0+ZXV4Seq7PDyLciZfGRxEc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001694915254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1412" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.k91l5npyps.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001694915254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k91l5npyps" + }, + { + "Name": "integrity", + "Value": "sha256-qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.k91l5npyps.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1412" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k91l5npyps" + }, + { + "Name": "integrity", + "Value": "sha256-qOqJHCXT/dEDGX6C218zarBqGTEK4Cq4TH6wKMq0ARc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.min.k91l5npyps.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k91l5npyps" + }, + { + "Name": "integrity", + "Value": "sha256-/9xAlIVZLhcc8njVjotfRGETCSlXuOxyrc6gC4J6eIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.s84is66ac2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s84is66ac2" + }, + { + "Name": "integrity", + "Value": "sha256-/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.s84is66ac2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s84is66ac2" + }, + { + "Name": "integrity", + "Value": "sha256-/DnXw0J3v5gRGp4YUEQ9b6GechX0BmFDAxJ7EFEeFWU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ca.s84is66ac2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s84is66ac2" + }, + { + "Name": "integrity", + "Value": "sha256-/FCg2vTF2oN7hstf3a3x+J77quohnsVDANobhpHRNiw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.h3pnxvpis9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001536098310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3pnxvpis9" + }, + { + "Name": "integrity", + "Value": "sha256-zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.h3pnxvpis9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3pnxvpis9" + }, + { + "Name": "integrity", + "Value": "sha256-zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.h3pnxvpis9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h3pnxvpis9" + }, + { + "Name": "integrity", + "Value": "sha256-QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001536098310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zYvBdMDmnRM1wYmO32XVFdkoF8Jpn3JjFX3ufOQRjv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "650" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QnPS0c+9h6UQZcSMdtgkbhNcqah+O+hwyN00HWrISYM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.64e44g77ze.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64e44g77ze" + }, + { + "Name": "integrity", + "Value": "sha256-dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.64e44g77ze.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1361" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64e44g77ze" + }, + { + "Name": "integrity", + "Value": "sha256-dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.64e44g77ze.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64e44g77ze" + }, + { + "Name": "integrity", + "Value": "sha256-U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1361" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dhSc27h0WQZGVGbN6srQ2mRmIirHOThzzOYCTQB/wLw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_cs.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5VgYNPSpHz2zZ45tFVHAz9/GPXH+d54BfxdtsPHEKQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.hl366ttjx3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001219512195" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hl366ttjx3" + }, + { + "Name": "integrity", + "Value": "sha256-tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.hl366ttjx3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2003" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hl366ttjx3" + }, + { + "Name": "integrity", + "Value": "sha256-tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.hl366ttjx3.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hl366ttjx3" + }, + { + "Name": "integrity", + "Value": "sha256-Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001219512195" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2003" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tUFTrchh2ZVheaEVTtz46UuSZbx/XZShOmmFQYmRINA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yn21hz0nEEmbkg2OXs0gG0tJwLCa+69ClJjekHIhwmQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.27azuqeifi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001270648030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27azuqeifi" + }, + { + "Name": "integrity", + "Value": "sha256-ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.27azuqeifi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1784" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27azuqeifi" + }, + { + "Name": "integrity", + "Value": "sha256-ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.27azuqeifi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "27azuqeifi" + }, + { + "Name": "integrity", + "Value": "sha256-1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001270648030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1784" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ovtW0hZo+gG8w2YsZ4X1ASoaNJ7lT13w1t3JoJNQYdQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_da.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1jsddb9p85ReB2G1biCe/CoidM2tl5UgyEaXO9jlLMQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000676589986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.loj7wvf52y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000676589986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "loj7wvf52y" + }, + { + "Name": "integrity", + "Value": "sha256-ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.loj7wvf52y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "loj7wvf52y" + }, + { + "Name": "integrity", + "Value": "sha256-ZYvGq5DU8rkD+n5zvROzPUHynoCCpgGOFhZSiFvAssA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.loj7wvf52y.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1477" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "loj7wvf52y" + }, + { + "Name": "integrity", + "Value": "sha256-COjWpTu7/iIgSv5pXM3WB0Nfvwvmk+7VSPGiGpAfJEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000696864111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.pcipiu00ts.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000696864111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pcipiu00ts" + }, + { + "Name": "integrity", + "Value": "sha256-10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.pcipiu00ts.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pcipiu00ts" + }, + { + "Name": "integrity", + "Value": "sha256-10w0LkqOHaft++ihKNnbFohGd4mSCuJpalRc5WJvWv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_de.min.pcipiu00ts.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pcipiu00ts" + }, + { + "Name": "integrity", + "Value": "sha256-Z58RrUJycnsZNX5DoAQ0e/dD+/9bfS0zte0q209XnVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_de.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001275510204" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.pepxsizzcj.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pepxsizzcj" + }, + { + "Name": "integrity", + "Value": "sha256-4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.pepxsizzcj.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pepxsizzcj" + }, + { + "Name": "integrity", + "Value": "sha256-4RIvcjrBeCRUwrsnZPgtjL1DX5HeqnKmb87Qj03ZBDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.min.pepxsizzcj.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pepxsizzcj" + }, + { + "Name": "integrity", + "Value": "sha256-1AjAY6Wb+F457EFIHK/Kh8iYRANR7AbfR+IEnhlOq20=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.qqu14emzpz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001275510204" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qqu14emzpz" + }, + { + "Name": "integrity", + "Value": "sha256-4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.qqu14emzpz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2217" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qqu14emzpz" + }, + { + "Name": "integrity", + "Value": "sha256-4u2fYn+QNbd0eXix/lDtLgGYXuu0TL6/piRBL+pgHwE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_el.qqu14emzpz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "783" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qqu14emzpz" + }, + { + "Name": "integrity", + "Value": "sha256-a81RPyZa3rNKJa/E7zJ0TzlO8pwjqaofp04/5Zxo/xk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_el.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.h12iko7ftt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h12iko7ftt" + }, + { + "Name": "integrity", + "Value": "sha256-1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.h12iko7ftt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h12iko7ftt" + }, + { + "Name": "integrity", + "Value": "sha256-1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.h12iko7ftt.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h12iko7ftt" + }, + { + "Name": "integrity", + "Value": "sha256-zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1f6ssVtmRfA3CSsVXO8Yf0rQaZqYt8G/ya9OT6gSgg0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zJmoU4dh8PEwwAi1HPy6ErsQRDUJZbKID8+0D6993dI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.47jzphig0g.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001628664495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47jzphig0g" + }, + { + "Name": "integrity", + "Value": "sha256-8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.47jzphig0g.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47jzphig0g" + }, + { + "Name": "integrity", + "Value": "sha256-8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.47jzphig0g.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47jzphig0g" + }, + { + "Name": "integrity", + "Value": "sha256-DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001628664495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Ajyp5TTNgQBnBur+GHJQX4xzpJYK/AB0Zuz3bDnCDk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "613" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DFjrd/XF5gW/zaxQ3Tgj1LYhkUwFRyDwX6fC6yB0eaY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.8qc6eszbrp.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001512859304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qc6eszbrp" + }, + { + "Name": "integrity", + "Value": "sha256-8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.8qc6eszbrp.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qc6eszbrp" + }, + { + "Name": "integrity", + "Value": "sha256-8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.8qc6eszbrp.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qc6eszbrp" + }, + { + "Name": "integrity", + "Value": "sha256-vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001512859304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1773" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8DMAgdMamqIN7gRnCAy5XA+diR4c2VFm16JQoWV+W94=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vGHN8BUYcqcCbCZvjNwpzN5LETqj2PQJEB0puLJUp6I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001607717042" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "621" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "621" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.kc8y7jttz4.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001607717042" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "621" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc8y7jttz4" + }, + { + "Name": "integrity", + "Value": "sha256-PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.kc8y7jttz4.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc8y7jttz4" + }, + { + "Name": "integrity", + "Value": "sha256-PP7Es64Lj+jT4kWTrXLISWhQXAjG/r82rY0L9a6lLI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.kc8y7jttz4.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "621" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc8y7jttz4" + }, + { + "Name": "integrity", + "Value": "sha256-fEDcLPXgouBBSlR3qS7RtoseK/NYmMKI13uRBg7xgKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001545595054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001636661211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.y16jku7qx9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001636661211" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y16jku7qx9" + }, + { + "Name": "integrity", + "Value": "sha256-ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.y16jku7qx9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1535" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y16jku7qx9" + }, + { + "Name": "integrity", + "Value": "sha256-ZmHOYQwHhyFEdU7xJnkJ5Tazquy4VYYOk/XvZD5wPlI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.y16jku7qx9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y16jku7qx9" + }, + { + "Name": "integrity", + "Value": "sha256-k515HfDMFP6H5joQwy28PLRRnGM/TTIM1hmWDFA86Fo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.v1kiv9r72f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001545595054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1kiv9r72f" + }, + { + "Name": "integrity", + "Value": "sha256-/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.v1kiv9r72f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1kiv9r72f" + }, + { + "Name": "integrity", + "Value": "sha256-/RagMUAqBvOmHxrj7X7Nwa9awaISTxWm9XSDQ41TKGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_es_PE.v1kiv9r72f.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v1kiv9r72f" + }, + { + "Name": "integrity", + "Value": "sha256-5qQAotT3gxghG94ks0bEdJrMqoONT2ALCJ4ZZPAB5H8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_es_PE.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.igjdu1dp7w.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "igjdu1dp7w" + }, + { + "Name": "integrity", + "Value": "sha256-wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.igjdu1dp7w.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "igjdu1dp7w" + }, + { + "Name": "integrity", + "Value": "sha256-wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.igjdu1dp7w.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "igjdu1dp7w" + }, + { + "Name": "integrity", + "Value": "sha256-ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wjVk67WZZVZnEhOutH8ot2h2A/oSs5sLdszuz+3btZM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZBIosm5aM7MCiB5+hoGuCwxpKtE+zOtIH9mFWf9zaAE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.rzbrs8h7h6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzbrs8h7h6" + }, + { + "Name": "integrity", + "Value": "sha256-if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.rzbrs8h7h6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1320" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzbrs8h7h6" + }, + { + "Name": "integrity", + "Value": "sha256-if5cGXLgLWuYf6yTmoxQQX/nIsPebPYbXMfD/vImipA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_et.min.rzbrs8h7h6.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rzbrs8h7h6" + }, + { + "Name": "integrity", + "Value": "sha256-mkS94lqOOZVdB9UZzRIrvaD3VT6WiyH2Txjjv7knrwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_et.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.6kpd4ayjf7.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kpd4ayjf7" + }, + { + "Name": "integrity", + "Value": "sha256-WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.6kpd4ayjf7.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1551" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kpd4ayjf7" + }, + { + "Name": "integrity", + "Value": "sha256-WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.6kpd4ayjf7.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6kpd4ayjf7" + }, + { + "Name": "integrity", + "Value": "sha256-vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1551" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WnEb0knvvyrnE2Hi5RUZuFG+hoqomjgg5fK9BvzwrgM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vfSe7lja1mKnKmnrGwVdvUcGvHTx4st7WgS40b9dDdc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.lvsee9tpue.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvsee9tpue" + }, + { + "Name": "integrity", + "Value": "sha256-sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.lvsee9tpue.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1375" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvsee9tpue" + }, + { + "Name": "integrity", + "Value": "sha256-sSswp0hrJHkzCgLS+vl32attNzeRxFTQi6jhdnUqsbk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_eu.min.lvsee9tpue.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvsee9tpue" + }, + { + "Name": "integrity", + "Value": "sha256-5+t2WMWp7wtgnjT11Ff1qzaZD9ybhppv5P2pZmP+tb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_eu.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001408450704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.u60huvpyhx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u60huvpyhx" + }, + { + "Name": "integrity", + "Value": "sha256-yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.u60huvpyhx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u60huvpyhx" + }, + { + "Name": "integrity", + "Value": "sha256-yhqnfbmVw7fLIiWgN6OJeeajW3N/AXdUh4nCBW7MSx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.min.u60huvpyhx.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u60huvpyhx" + }, + { + "Name": "integrity", + "Value": "sha256-LH86PhpEjQP0Y/DgPr3eVoEuPHmIIo2kHfax7G2aKqs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.wopte5ltn3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001408450704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wopte5ltn3" + }, + { + "Name": "integrity", + "Value": "sha256-ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.wopte5ltn3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wopte5ltn3" + }, + { + "Name": "integrity", + "Value": "sha256-ULmtCb3afrBetBzvAhcNqDgPC7nfFd7c976hchLs2ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fa.wopte5ltn3.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wopte5ltn3" + }, + { + "Name": "integrity", + "Value": "sha256-spd4RGKjpLkxneKo6hK7SVsZjCmxHpwoayGOSQmG2Eg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.es5m6k79fy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001644736842" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es5m6k79fy" + }, + { + "Name": "integrity", + "Value": "sha256-zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.es5m6k79fy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es5m6k79fy" + }, + { + "Name": "integrity", + "Value": "sha256-zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.es5m6k79fy.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "es5m6k79fy" + }, + { + "Name": "integrity", + "Value": "sha256-Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001644736842" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1602" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zgw/yxS37LUy0wudPzJur0V9ei68PxxH7uTcqMNZXA0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jndu5Imdt37c1oBsrC2zQswUVwbGPB92mGMod/xuv7A=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001706484642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1430" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.ssml0qprof.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001706484642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssml0qprof" + }, + { + "Name": "integrity", + "Value": "sha256-VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.ssml0qprof.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1430" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssml0qprof" + }, + { + "Name": "integrity", + "Value": "sha256-VKEOfS/328eJjYogrdVhAk/lMB7HamlaiKvKcDi/NU0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fi.min.ssml0qprof.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ssml0qprof" + }, + { + "Name": "integrity", + "Value": "sha256-Dsjc+hMMSDFU/5xFHVDg1QxXu5F9lJMr5mhiMRZC6FM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fi.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.gq2c77q85y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000904159132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gq2c77q85y" + }, + { + "Name": "integrity", + "Value": "sha256-2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.gq2c77q85y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gq2c77q85y" + }, + { + "Name": "integrity", + "Value": "sha256-2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.gq2c77q85y.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gq2c77q85y" + }, + { + "Name": "integrity", + "Value": "sha256-rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000904159132" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Bvd9/7AczhlB/XEw0uptErFKlgqYujdxiwjK42Aqvc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rBFLzdhofDwttwcGDt1X2qL9B5X18o4zFKyStPU+8pI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.c60lh8z0fq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000930232558" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c60lh8z0fq" + }, + { + "Name": "integrity", + "Value": "sha256-3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.c60lh8z0fq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c60lh8z0fq" + }, + { + "Name": "integrity", + "Value": "sha256-3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.c60lh8z0fq.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c60lh8z0fq" + }, + { + "Name": "integrity", + "Value": "sha256-gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000930232558" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3AqyYBKCqeKXsz34zU6Fn7BiSEg2ozmoooSaWc9LBPc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_fr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gdfp5CYXtonKquLafwBGOUP1WNjD3/ASsQ/tLRT77Kc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.9by8lo7rpx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9by8lo7rpx" + }, + { + "Name": "integrity", + "Value": "sha256-tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.9by8lo7rpx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9by8lo7rpx" + }, + { + "Name": "integrity", + "Value": "sha256-tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.9by8lo7rpx.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9by8lo7rpx" + }, + { + "Name": "integrity", + "Value": "sha256-i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001335113485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSQH9mAbUnMarWa0gfhPsmx69YAk6mYcjKBJjf86tok=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i0wyE4h0o+XUiQDVTOzMfYAP+DIKNhlSZDjh7UcUZbg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.327nt2ysbd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001443001443" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "327nt2ysbd" + }, + { + "Name": "integrity", + "Value": "sha256-eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.327nt2ysbd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "327nt2ysbd" + }, + { + "Name": "integrity", + "Value": "sha256-eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.327nt2ysbd.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "327nt2ysbd" + }, + { + "Name": "integrity", + "Value": "sha256-DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001443001443" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eyjbs9j9IB9uEfndQOJYYokwu60pA/P/7EAqBkLZD0E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ge.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DCbnIYP6Y8SLltpKYFGJVTCZ+Wo1WAozkYlsgsqmRtE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.77io32a98w.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001612903226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77io32a98w" + }, + { + "Name": "integrity", + "Value": "sha256-I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.77io32a98w.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77io32a98w" + }, + { + "Name": "integrity", + "Value": "sha256-I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.77io32a98w.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "77io32a98w" + }, + { + "Name": "integrity", + "Value": "sha256-InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001612903226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I30Sc4HKgXFKeoCjUirHHiNO4az8xsDJYf1GJdogCqo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-InHY2v7c560inSXnyaxoTtKgIjbuECp4a0V7g82YnVQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.owfod1uvuk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "owfod1uvuk" + }, + { + "Name": "integrity", + "Value": "sha256-eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.owfod1uvuk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "owfod1uvuk" + }, + { + "Name": "integrity", + "Value": "sha256-eCgbLg4X4fn6it2HXn+LOGu9AFZxOc0q8XeImDNC3v0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_gl.owfod1uvuk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "owfod1uvuk" + }, + { + "Name": "integrity", + "Value": "sha256-qMKSJhHuexrXFnk9EhE6v1PbN22egaOU/FPysQP+o5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_gl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.26ozc826dc.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "26ozc826dc" + }, + { + "Name": "integrity", + "Value": "sha256-GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.26ozc826dc.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "26ozc826dc" + }, + { + "Name": "integrity", + "Value": "sha256-GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.26ozc826dc.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "26ozc826dc" + }, + { + "Name": "integrity", + "Value": "sha256-hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GrFyTsy6kkE7sBTZfR/PwPHn08ZooNINqjAFfQC/05g=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hDmXEu6eco8QoNyrz3s/b1UWCbcQ0p3cqpS6qvcwPBU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.pos9f1q2xy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pos9f1q2xy" + }, + { + "Name": "integrity", + "Value": "sha256-h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.pos9f1q2xy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1381" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pos9f1q2xy" + }, + { + "Name": "integrity", + "Value": "sha256-h9OwZz8SKs+AYOJWYt2afBN+LMoRHdmMJErvu7eAVR8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_he.min.pos9f1q2xy.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pos9f1q2xy" + }, + { + "Name": "integrity", + "Value": "sha256-IcQXt0FSVw1fFhzQvomzsXzCNgIgBfRm1osMpb5RL5Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_he.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.9yie26m2y6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001686340641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yie26m2y6" + }, + { + "Name": "integrity", + "Value": "sha256-cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.9yie26m2y6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yie26m2y6" + }, + { + "Name": "integrity", + "Value": "sha256-cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.9yie26m2y6.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9yie26m2y6" + }, + { + "Name": "integrity", + "Value": "sha256-Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001686340641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cVHPbZI9P1xnZltLVcwx/+yOMMcDPvqAyb2AW9HOdIU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "592" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pnbx8iaFKotbAyDcxslWgMtlyt4XH7MmhO42TwuUauU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001760563380" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "567" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "567" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.ut7a37kl02.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001760563380" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "567" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ut7a37kl02" + }, + { + "Name": "integrity", + "Value": "sha256-3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.ut7a37kl02.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ut7a37kl02" + }, + { + "Name": "integrity", + "Value": "sha256-3trgoRymczWqPFab7mvJzzBsnhU3EGONEbXZAP12gVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hr.min.ut7a37kl02.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "567" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ut7a37kl02" + }, + { + "Name": "integrity", + "Value": "sha256-IlSjA5aN811sKyI1toHXnxyq8pThCGSoR79tlBEBhFo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.55v3ltdbgw.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001472754050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55v3ltdbgw" + }, + { + "Name": "integrity", + "Value": "sha256-aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.55v3ltdbgw.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55v3ltdbgw" + }, + { + "Name": "integrity", + "Value": "sha256-aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.55v3ltdbgw.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55v3ltdbgw" + }, + { + "Name": "integrity", + "Value": "sha256-RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001472754050" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aRmiH0bsEkdnFQS3q/enaDVlR9CnsyIlvBpbxADbIXk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RPJ3Pt1QDc8KBDpG4lsk9bPQHd+E2+lWsQTvVnU6B/I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.gdt0jzsyyr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gdt0jzsyyr" + }, + { + "Name": "integrity", + "Value": "sha256-tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.gdt0jzsyyr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1268" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gdt0jzsyyr" + }, + { + "Name": "integrity", + "Value": "sha256-tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.gdt0jzsyyr.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gdt0jzsyyr" + }, + { + "Name": "integrity", + "Value": "sha256-fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001529051988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1268" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tDP0oVxrZFE1oDA0JN6T0Zimv519bgDdCxdSmFwYUGo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hu.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fCwSoR0m42UaneJvNHE8nGeEBFPtjdDrgr0G4PlE/bY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.1zopoype1v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001314060447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zopoype1v" + }, + { + "Name": "integrity", + "Value": "sha256-U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.1zopoype1v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zopoype1v" + }, + { + "Name": "integrity", + "Value": "sha256-U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.1zopoype1v.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1zopoype1v" + }, + { + "Name": "integrity", + "Value": "sha256-0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001314060447" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U8V/6uRgW9nLGyH29vwa/iK+aIvKWBUfnq7dxXTy8hk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0pO9iRuwz1jRLhDNQ0z0TywjCN/TbIiAoouUebxR88s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001369863014" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.plsxlx8y8y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001369863014" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "plsxlx8y8y" + }, + { + "Name": "integrity", + "Value": "sha256-85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.plsxlx8y8y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1616" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "plsxlx8y8y" + }, + { + "Name": "integrity", + "Value": "sha256-85dRyYbs6j/0xC308RjryKd8M5AHDs8kuQliNr+TTZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.plsxlx8y8y.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "729" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "plsxlx8y8y" + }, + { + "Name": "integrity", + "Value": "sha256-IVpSdKPpXhxiWhSj2vMpljMzNVSerz1cOAML8+GWCwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.4tv8xn3vw2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001689189189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4tv8xn3vw2" + }, + { + "Name": "integrity", + "Value": "sha256-+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.4tv8xn3vw2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4tv8xn3vw2" + }, + { + "Name": "integrity", + "Value": "sha256-+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.4tv8xn3vw2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4tv8xn3vw2" + }, + { + "Name": "integrity", + "Value": "sha256-eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001689189189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+D/4Er3WZ+OXEqLdk31E3T5TA32bLqBNCH6yyhri0vs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eP83fTz5Ps8JbIotmkxwPZ2CGMZwxHCzit+TTIS7JAc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1313" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.wvs98wlhfe.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvs98wlhfe" + }, + { + "Name": "integrity", + "Value": "sha256-hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.wvs98wlhfe.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1313" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvs98wlhfe" + }, + { + "Name": "integrity", + "Value": "sha256-hO1BwaG+ppOysSaK0wBp1adBH9o5j0IqW8snhlznles=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_id.min.wvs98wlhfe.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wvs98wlhfe" + }, + { + "Name": "integrity", + "Value": "sha256-p89RIhbNVXvrAU4KYAtgwVXQqF9yttMheKWTXxO8EOw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_id.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.8mtblk34sy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001718213058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mtblk34sy" + }, + { + "Name": "integrity", + "Value": "sha256-sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.8mtblk34sy.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mtblk34sy" + }, + { + "Name": "integrity", + "Value": "sha256-sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.8mtblk34sy.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mtblk34sy" + }, + { + "Name": "integrity", + "Value": "sha256-rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001718213058" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sJ8x0ehFcGF1vxtCoV5qSq335wulVujzvkl8jRCjHX8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "581" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rvDXmn9vLjRuYQVWh1mlU1paUYBmQ6AvCb57rZk/t/Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001795332136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.zbn7aezild.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001795332136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zbn7aezild" + }, + { + "Name": "integrity", + "Value": "sha256-IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.zbn7aezild.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1147" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zbn7aezild" + }, + { + "Name": "integrity", + "Value": "sha256-IZz8Z6S1a6LyVZxbe6CYpNB0VhqX0nMBDJhjWcgKSSY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_is.min.zbn7aezild.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "556" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zbn7aezild" + }, + { + "Name": "integrity", + "Value": "sha256-mDxAs4jsBvFf1enOOULXG3SXEZn1YQY/trwjwT6D6X0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_is.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.habkgop76v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001597444089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=\"" + }, + { + "Name": "ETag", + "Value": "W/\"18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "habkgop76v" + }, + { + "Name": "integrity", + "Value": "sha256-18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.habkgop76v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "habkgop76v" + }, + { + "Name": "integrity", + "Value": "sha256-18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.habkgop76v.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "habkgop76v" + }, + { + "Name": "integrity", + "Value": "sha256-buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001597444089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=\"" + }, + { + "Name": "ETag", + "Value": "W/\"18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-18mZS3TqPMGWekJoU10duYl31z88BSXieNO8cbVoMCk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "625" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-buDwSgH6FQGdKX31JdiecxRrG5pg6cTpE36LzERLims=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.f8rod5avtk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f8rod5avtk" + }, + { + "Name": "integrity", + "Value": "sha256-IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.f8rod5avtk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f8rod5avtk" + }, + { + "Name": "integrity", + "Value": "sha256-IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.f8rod5avtk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f8rod5avtk" + }, + { + "Name": "integrity", + "Value": "sha256-Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001639344262" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1394" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IZ/usrWHNXPrBoMtkEs2iOk0Eup5E+S/zb3c7pvWHrc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_it.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "609" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jnw1XAiI7bAJlA8hNvNyOb2dKSPx5pX5kHBk2xybkOA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001404494382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.dlh93ljkej.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001464128843" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlh93ljkej" + }, + { + "Name": "integrity", + "Value": "sha256-UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.dlh93ljkej.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlh93ljkej" + }, + { + "Name": "integrity", + "Value": "sha256-UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.dlh93ljkej.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlh93ljkej" + }, + { + "Name": "integrity", + "Value": "sha256-oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001464128843" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UUhYDVF/Ltl0JYcT4LFtkLnK9k1I4UN7OlF9YyfNlfo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oBBS0lldJ1vUMpNO8e4DeKX/g4YqYD3f2n2nX+qrl1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.zp577d2wnz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001404494382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp577d2wnz" + }, + { + "Name": "integrity", + "Value": "sha256-SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.zp577d2wnz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1797" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp577d2wnz" + }, + { + "Name": "integrity", + "Value": "sha256-SQzkxm39ezTEhGkCcRn7HrIRBYS1Q+UqwYzPY1l1kuk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ja.zp577d2wnz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp577d2wnz" + }, + { + "Name": "integrity", + "Value": "sha256-NNcPU0U/fZOyJ+S5HG0UpP1lTU01WNMJjP7mvFiWY/I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ja.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001200480192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2688" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.72nu1ji7v8.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001234567901" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nu1ji7v8" + }, + { + "Name": "integrity", + "Value": "sha256-P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.72nu1ji7v8.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2505" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nu1ji7v8" + }, + { + "Name": "integrity", + "Value": "sha256-P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.72nu1ji7v8.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nu1ji7v8" + }, + { + "Name": "integrity", + "Value": "sha256-29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001234567901" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2505" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P31Lp31Q2hZcFXH71zWKZSGVN+4Z1JzZNr5uMt01Jb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-29cw9tLWEXkJiUx/evwE+ri2+jHhrU5kunT9TUQsalM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.tcbwb8p2oz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001200480192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tcbwb8p2oz" + }, + { + "Name": "integrity", + "Value": "sha256-g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.tcbwb8p2oz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2688" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tcbwb8p2oz" + }, + { + "Name": "integrity", + "Value": "sha256-g+MwtFbb3CC5/Vnox8pyvYcfxq6k+yVXRPCVi9wWAk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ka.tcbwb8p2oz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tcbwb8p2oz" + }, + { + "Name": "integrity", + "Value": "sha256-65472+U9jxlpL84mrerGr04f2ov8DEcDhIvR49vweB4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ka.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001186239620" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001222493888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "817" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "817" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.rxjjyhpfvd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001222493888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "817" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxjjyhpfvd" + }, + { + "Name": "integrity", + "Value": "sha256-r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.rxjjyhpfvd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxjjyhpfvd" + }, + { + "Name": "integrity", + "Value": "sha256-r4HridJ51HYlrP5k0/xAOKJCezSZszrvRgM/HFmHwWA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.min.rxjjyhpfvd.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "817" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rxjjyhpfvd" + }, + { + "Name": "integrity", + "Value": "sha256-3XwIkoWXkhS6avmMGHaxH40Y41ybjyFAzXTarQU+gRM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.vyqhnkn1ms.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001186239620" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vyqhnkn1ms" + }, + { + "Name": "integrity", + "Value": "sha256-x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.vyqhnkn1ms.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vyqhnkn1ms" + }, + { + "Name": "integrity", + "Value": "sha256-x5l9T8KGbLgNHiSpG1xRFeZTMOVG+ZNtWTtI5091wgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_kk.vyqhnkn1ms.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "842" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vyqhnkn1ms" + }, + { + "Name": "integrity", + "Value": "sha256-DnGUrtcigyh8Gg8njEoVoMLNcW4kiMSUBPEHmhjZiTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_kk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.calpjmq1bf.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001434720230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "calpjmq1bf" + }, + { + "Name": "integrity", + "Value": "sha256-/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.calpjmq1bf.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1487" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "calpjmq1bf" + }, + { + "Name": "integrity", + "Value": "sha256-/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.calpjmq1bf.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "calpjmq1bf" + }, + { + "Name": "integrity", + "Value": "sha256-eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001434720230" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1487" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/NxvsAw1hSX2F8mHvfs9ZlJZGiibe54N5eev095RlpM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "696" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eQ6yLV9Ky4acfLBO2Ui6+ps3w8LnWLeapiiLtb84R3E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.3p2ut90w09.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3p2ut90w09" + }, + { + "Name": "integrity", + "Value": "sha256-2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.3p2ut90w09.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3p2ut90w09" + }, + { + "Name": "integrity", + "Value": "sha256-2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.3p2ut90w09.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3p2ut90w09" + }, + { + "Name": "integrity", + "Value": "sha256-3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZVXFBW5gXv/wwnmspLZ3RS8BHOUB8wDHucgvYdXcyw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ko.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3uDSP5j2k1dovMBipu7m8V4OtqUr0dLipP4kXw85/50=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.h87g0ks4tz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001488095238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h87g0ks4tz" + }, + { + "Name": "integrity", + "Value": "sha256-X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.h87g0ks4tz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h87g0ks4tz" + }, + { + "Name": "integrity", + "Value": "sha256-X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.h87g0ks4tz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h87g0ks4tz" + }, + { + "Name": "integrity", + "Value": "sha256-Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001488095238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X+enbN+P5KTsUgOhztXMGskqELXOaznIXmPBuJ2v6Po=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oay6334zP5fk14BXDQbTAkQCAhgqNaZztqS+uCS0m7M=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.rdf552frfi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdf552frfi" + }, + { + "Name": "integrity", + "Value": "sha256-4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.rdf552frfi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1414" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdf552frfi" + }, + { + "Name": "integrity", + "Value": "sha256-4QWd63AdZMndERgN4vm8KK7oTILCzrs8e9BWtVq3nEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lt.min.rdf552frfi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdf552frfi" + }, + { + "Name": "integrity", + "Value": "sha256-DbbQ0Q4ifWu5zJ8McWkoLQYpqbKtTbswW50jmvHHCm4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lt.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1554" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.lu4aaxkd1m.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lu4aaxkd1m" + }, + { + "Name": "integrity", + "Value": "sha256-89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.lu4aaxkd1m.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1554" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lu4aaxkd1m" + }, + { + "Name": "integrity", + "Value": "sha256-89rpdl0G3Zbkv0ZrEAHuXRc2A9AtEdKcHbPkuBgNfE8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.lu4aaxkd1m.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lu4aaxkd1m" + }, + { + "Name": "integrity", + "Value": "sha256-CoWgKs11nCUBN2oJntimExWsSRj7BUecJhw/N65ewZ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.ej8y578ign.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ej8y578ign" + }, + { + "Name": "integrity", + "Value": "sha256-Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.ej8y578ign.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ej8y578ign" + }, + { + "Name": "integrity", + "Value": "sha256-Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.ej8y578ign.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ej8y578ign" + }, + { + "Name": "integrity", + "Value": "sha256-ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1377" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rv9nDteZsuD4ep2TZ+O2Hoq894dpRLSGN4fQSSBRHqc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_lv.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ID8VGL7x5G/kxerqQSbJr6wOy4cXsp9qrz9EvyfWEMk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001388888889" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001457725948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.ogcw3vbpk9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001457725948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogcw3vbpk9" + }, + { + "Name": "integrity", + "Value": "sha256-GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.ogcw3vbpk9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogcw3vbpk9" + }, + { + "Name": "integrity", + "Value": "sha256-GLavhYHzkPpkKKVbdwSuhQK5LMvn68/bWN17Nb/sMsc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.min.ogcw3vbpk9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogcw3vbpk9" + }, + { + "Name": "integrity", + "Value": "sha256-jdlCmYDroqrVMJHcr1Lvj8GoBmvTm89Zdb5JOhq3RMA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.yi6misf6lb.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001388888889" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yi6misf6lb" + }, + { + "Name": "integrity", + "Value": "sha256-doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.yi6misf6lb.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yi6misf6lb" + }, + { + "Name": "integrity", + "Value": "sha256-doNw5EbqWNGRHPnxapyiBIrikng8p9De1/Sb1xbOwJk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_mk.yi6misf6lb.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yi6misf6lb" + }, + { + "Name": "integrity", + "Value": "sha256-IMWnPXlPMBf5nQAanDAEs9+gX91BA7cHSFCcuanzW5o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_mk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001712328767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.lpb34r9809.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001712328767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lpb34r9809" + }, + { + "Name": "integrity", + "Value": "sha256-Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.lpb34r9809.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lpb34r9809" + }, + { + "Name": "integrity", + "Value": "sha256-Cb5lyf4bfP8SVmbUden8emFq/JPlgI6d8Yc0Kx0faF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.lpb34r9809.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "583" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lpb34r9809" + }, + { + "Name": "integrity", + "Value": "sha256-AZxhhGqSQSvgVS4Zgq2KS9M73b2vm9+7AgenwHoaK1U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.ar6ecz4epo.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar6ecz4epo" + }, + { + "Name": "integrity", + "Value": "sha256-ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.ar6ecz4epo.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1330" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar6ecz4epo" + }, + { + "Name": "integrity", + "Value": "sha256-ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.ar6ecz4epo.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ar6ecz4epo" + }, + { + "Name": "integrity", + "Value": "sha256-XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001766784452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1330" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ttG+saLQwK8Pmhs6bZuuf0etNInWqEmI0pJxrPfRSi4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_my.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XTqfA8paOE6ZrCBjJRn+G4WDprb0Vx4xaNMshGxadZ0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001366120219" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2077" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001466275660" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.otpwlehnsh.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001466275660" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otpwlehnsh" + }, + { + "Name": "integrity", + "Value": "sha256-vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.otpwlehnsh.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otpwlehnsh" + }, + { + "Name": "integrity", + "Value": "sha256-vEeOKCz9Rr4T3oqeG4eL/R2oPmGlvXL5bToNdbaJixo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.min.otpwlehnsh.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otpwlehnsh" + }, + { + "Name": "integrity", + "Value": "sha256-AytU7DYb7NlsDE0MJHW5T390oft6rqHTdN9QhCn8cxI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.nepyw8l5ew.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001366120219" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nepyw8l5ew" + }, + { + "Name": "integrity", + "Value": "sha256-4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.nepyw8l5ew.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2077" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nepyw8l5ew" + }, + { + "Name": "integrity", + "Value": "sha256-4XosqVBhqzLlrrU8xwBYyc1p3VgpGaHOtVH11ctFRIk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_nl.nepyw8l5ew.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nepyw8l5ew" + }, + { + "Name": "integrity", + "Value": "sha256-O4adu3WXkTQ985NeQhPBFmpF7Ku/uijdg1lSunwyDZc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_nl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001742160279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001805054152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "553" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "553" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.oyonhqzdz9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001805054152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "553" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyonhqzdz9" + }, + { + "Name": "integrity", + "Value": "sha256-IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.oyonhqzdz9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1161" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyonhqzdz9" + }, + { + "Name": "integrity", + "Value": "sha256-IKfo1xwHxtNoDTS4Y3Xg2FLBXChLgFu+P4rzKwmRNbI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.min.oyonhqzdz9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "553" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oyonhqzdz9" + }, + { + "Name": "integrity", + "Value": "sha256-/rxkD+79xs26cHrkESl9nrc0AAWOhEEoves4Yms7/90=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.qalhzmhefw.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001742160279" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qalhzmhefw" + }, + { + "Name": "integrity", + "Value": "sha256-EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.qalhzmhefw.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qalhzmhefw" + }, + { + "Name": "integrity", + "Value": "sha256-EjGerugGB65a9c3WaGrNSpWiNAHCWF61U6HjKv6/E2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_no.qalhzmhefw.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "573" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qalhzmhefw" + }, + { + "Name": "integrity", + "Value": "sha256-wLc3ipVRER9ruOIc4NhR4Ef7ZFmhrJbPLNb36dXUYOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_no.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001418439716" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.jxlth9r3o1.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001418439716" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxlth9r3o1" + }, + { + "Name": "integrity", + "Value": "sha256-R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.jxlth9r3o1.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1810" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxlth9r3o1" + }, + { + "Name": "integrity", + "Value": "sha256-R/mls5g3hKswo3+C+ER2XzqwK+k8ATYJvXjgrIdpNHY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.jxlth9r3o1.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jxlth9r3o1" + }, + { + "Name": "integrity", + "Value": "sha256-aW+gxVlz7dr1B88hzRYxysNK0if59+hFb94BUwpA9pw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.0bs87gr9gx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001483679525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bs87gr9gx" + }, + { + "Name": "integrity", + "Value": "sha256-TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.0bs87gr9gx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bs87gr9gx" + }, + { + "Name": "integrity", + "Value": "sha256-TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.0bs87gr9gx.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bs87gr9gx" + }, + { + "Name": "integrity", + "Value": "sha256-PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001483679525" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1610" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TNiehJmIWcdxXn8mQkLWqD/ArPi16f43FuXWP4ckJBI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PNYTt2ZduGOAGzcB7ENc5sxptMF/KLJkU+K2ChbBl3s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.4d5eq1cjl8.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000681198910" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1467" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4d5eq1cjl8" + }, + { + "Name": "integrity", + "Value": "sha256-WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.4d5eq1cjl8.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4d5eq1cjl8" + }, + { + "Name": "integrity", + "Value": "sha256-WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.4d5eq1cjl8.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1467" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4d5eq1cjl8" + }, + { + "Name": "integrity", + "Value": "sha256-4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000681198910" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1467" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WG9Ie/+6GMX5GGChSrgIFWc26Q8Zk5m4UrXxjLdlCVo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1467" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4eIsevnwTn4BwBclRQKpOI0C/wl0FLu1SjLqjIH+9q8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.iz18k3071x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000718907261" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz18k3071x" + }, + { + "Name": "integrity", + "Value": "sha256-DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.iz18k3071x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz18k3071x" + }, + { + "Name": "integrity", + "Value": "sha256-DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.iz18k3071x.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz18k3071x" + }, + { + "Name": "integrity", + "Value": "sha256-A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000718907261" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DvzuIWzGUn8E45YKHyVOCYjvnYrwBaDsvHLYI9rXSho=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1390" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A3blZfSJC96mpWEWyspYgvLTuN562H2VkRoARW4f3Zo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.gk5zxetrr2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gk5zxetrr2" + }, + { + "Name": "integrity", + "Value": "sha256-8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.gk5zxetrr2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1923" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gk5zxetrr2" + }, + { + "Name": "integrity", + "Value": "sha256-8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.gk5zxetrr2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gk5zxetrr2" + }, + { + "Name": "integrity", + "Value": "sha256-587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1923" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E+kpSLNyeduLWlf9vxFSY7vz+Sufi2eosTR/lU9c6s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-587xgYE48Ya58ohbqWhbo2Qej/Xm53FH2Zt2HtWaWI4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.5n3aawue4d.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001526717557" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5n3aawue4d" + }, + { + "Name": "integrity", + "Value": "sha256-D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.5n3aawue4d.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5n3aawue4d" + }, + { + "Name": "integrity", + "Value": "sha256-D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.5n3aawue4d.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5n3aawue4d" + }, + { + "Name": "integrity", + "Value": "sha256-iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001526717557" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D6VQCtBWMFuvUk75RvuVhDQ1ksW2lWl3fCD6O+LzKN8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iCOOylZFYmpeNBKPj09Nxz4zwystzjV7WmVXb3px9RE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.ago6xmtrp5.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ago6xmtrp5" + }, + { + "Name": "integrity", + "Value": "sha256-SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.ago6xmtrp5.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ago6xmtrp5" + }, + { + "Name": "integrity", + "Value": "sha256-SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.ago6xmtrp5.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ago6xmtrp5" + }, + { + "Name": "integrity", + "Value": "sha256-Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001584786054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SiovBurYOHtekA2kF1RmcqvHI565ic4QGUWcsJmABSo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ah+R6jbxdEmvyfMDrHvMg1fV1Li736ljah2qiWn+Ddc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.4dmkssrcsm.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001644736842" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dmkssrcsm" + }, + { + "Name": "integrity", + "Value": "sha256-OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.4dmkssrcsm.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1506" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dmkssrcsm" + }, + { + "Name": "integrity", + "Value": "sha256-OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.4dmkssrcsm.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dmkssrcsm" + }, + { + "Name": "integrity", + "Value": "sha256-B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001644736842" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1506" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OOqLLnRvwXYa3c/ufVrY+WBb6O+k/N22k4stwaC3iNA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ro.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "607" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B3oZtzmjKWOLWE5EOhhU6u6DdivX5kLPK1IVhRs5Xo4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001267427123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2200" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001317523057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2016" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.yv1wle7inz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001317523057" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv1wle7inz" + }, + { + "Name": "integrity", + "Value": "sha256-ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.yv1wle7inz.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2016" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv1wle7inz" + }, + { + "Name": "integrity", + "Value": "sha256-ju6icsl8wlER+/h07uXtJQa2qEV+DKg1qha5jN5/+AA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.min.yv1wle7inz.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yv1wle7inz" + }, + { + "Name": "integrity", + "Value": "sha256-a/fHXNjY4wNH2rarQgoqiiF6ZVmlY7DTLD9+vvozsX0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.w4o0ldhl6d.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001267427123" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w4o0ldhl6d" + }, + { + "Name": "integrity", + "Value": "sha256-0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.w4o0ldhl6d.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2200" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w4o0ldhl6d" + }, + { + "Name": "integrity", + "Value": "sha256-0KwVMmWo/nC/erBtIGGs2sLoog7ewqzr7a/dh4dNQ7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ru.w4o0ldhl6d.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w4o0ldhl6d" + }, + { + "Name": "integrity", + "Value": "sha256-k6AXrl2W0fjLHLxUN53u8VSf1uNBWS+0kJ184CYBeE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ru.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1702" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.lfm5r966fd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfm5r966fd" + }, + { + "Name": "integrity", + "Value": "sha256-0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.lfm5r966fd.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfm5r966fd" + }, + { + "Name": "integrity", + "Value": "sha256-0Z+an3MAeKFI0Z7FzwRTCMkKAlJ33CnwyGlFsH0b1Vw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.min.lfm5r966fd.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfm5r966fd" + }, + { + "Name": "integrity", + "Value": "sha256-PuVqtONCyMlZistUZpCabxgq6gcjB25w3mUkQW8wLz4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.s76yuwawej.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s76yuwawej" + }, + { + "Name": "integrity", + "Value": "sha256-CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.s76yuwawej.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1702" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s76yuwawej" + }, + { + "Name": "integrity", + "Value": "sha256-CK7JDn3NqJjwK3E8X3l2/olp8mlZmYhMl5Y2dcvLSSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sd.s76yuwawej.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s76yuwawej" + }, + { + "Name": "integrity", + "Value": "sha256-yj9tNhBwe5gCXha69QA2jT+So14RPd6HXkh1jPoLDsg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sd.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.69rqxy0ngi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001697792869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69rqxy0ngi" + }, + { + "Name": "integrity", + "Value": "sha256-elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.69rqxy0ngi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69rqxy0ngi" + }, + { + "Name": "integrity", + "Value": "sha256-elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.69rqxy0ngi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69rqxy0ngi" + }, + { + "Name": "integrity", + "Value": "sha256-EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001697792869" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-elUqc/3SKwl4Q1fxG9yZqSMD8rJprFz/W4gE0uayBww=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "588" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EdfxLX/s+0q3RoW0urk5y+3Q4WxKxjZBBT+GW/v/nTE=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.x79ipvn7le.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001663893511" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x79ipvn7le" + }, + { + "Name": "integrity", + "Value": "sha256-0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.x79ipvn7le.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x79ipvn7le" + }, + { + "Name": "integrity", + "Value": "sha256-0zvNMxLw1iX96ohPOjC+NjhyB7ud6AJhmk/Gygxm3WY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_si.x79ipvn7le.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x79ipvn7le" + }, + { + "Name": "integrity", + "Value": "sha256-kiLzMCGG2rWH3swbm7RGf3WfWMy2SoKW/9Qc8LTH7EE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_si.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.iunqw247dg.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iunqw247dg" + }, + { + "Name": "integrity", + "Value": "sha256-OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.iunqw247dg.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iunqw247dg" + }, + { + "Name": "integrity", + "Value": "sha256-OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.iunqw247dg.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iunqw247dg" + }, + { + "Name": "integrity", + "Value": "sha256-y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001647446458" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OmMJ4xBH5EcWC2s5lD/R4KpLIVH+TIOYZcK7pt1PD74=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y76N7oOSjR9Yz/i07U1cxDIBBoKN9jnHxe8JEfjnyJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.8chydu07js.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001751313485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8chydu07js" + }, + { + "Name": "integrity", + "Value": "sha256-uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.8chydu07js.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8chydu07js" + }, + { + "Name": "integrity", + "Value": "sha256-uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.8chydu07js.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8chydu07js" + }, + { + "Name": "integrity", + "Value": "sha256-J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001751313485" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1089" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uE5EcayTggDxmtNwOdl3FH8Opu7AX2LBm4SZrLgaza8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "570" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J2UigaaE6AUSq5P9N9lLGTo7kvSYDgvGnOtBKzxvVWQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.e0lja5j2ir.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001706484642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e0lja5j2ir" + }, + { + "Name": "integrity", + "Value": "sha256-4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.e0lja5j2ir.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e0lja5j2ir" + }, + { + "Name": "integrity", + "Value": "sha256-4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.e0lja5j2ir.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e0lja5j2ir" + }, + { + "Name": "integrity", + "Value": "sha256-UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001706484642" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4uBDyb6geizEJ6pjPIarHs3f0R9cWbdiYS7U6Hg8cns=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "585" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UbcqsP2iKzCbCGBndTR6Y824eOqcONTCDEx//u7HCZU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.ha1qzcx65l.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001776198934" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ha1qzcx65l" + }, + { + "Name": "integrity", + "Value": "sha256-CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.ha1qzcx65l.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1315" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ha1qzcx65l" + }, + { + "Name": "integrity", + "Value": "sha256-CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.ha1qzcx65l.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ha1qzcx65l" + }, + { + "Name": "integrity", + "Value": "sha256-GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001776198934" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1315" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CczCJK7YwTA1WEfc8waZPSSFyhMjk0V1h+QWOkGgGw0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "562" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GcOBTBOjCegXwMJ1ON6O9FOluHMd3eYM16BWjNUd83A=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.58ur1407x9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001355013550" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58ur1407x9" + }, + { + "Name": "integrity", + "Value": "sha256-xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.58ur1407x9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58ur1407x9" + }, + { + "Name": "integrity", + "Value": "sha256-xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.58ur1407x9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58ur1407x9" + }, + { + "Name": "integrity", + "Value": "sha256-HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001355013550" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1890" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xcKQJQ08m3VyOYhGzwAg29DfhvKzh9rGqaiWRoHZWKo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HjV/ov79o1Zdpr/5K4YNEVChJVm+24kwr5xloVnCo1s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001404494382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.xht256fs5s.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001404494382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xht256fs5s" + }, + { + "Name": "integrity", + "Value": "sha256-KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.xht256fs5s.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1700" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xht256fs5s" + }, + { + "Name": "integrity", + "Value": "sha256-KxFITsU+dG/E3OEEFoemYVzMozRKCjwceJJbw2bKp8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr.min.xht256fs5s.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xht256fs5s" + }, + { + "Name": "integrity", + "Value": "sha256-cHsNSUWVonMB3JeW+5dKRNo7KWnAx3HlJ9arLtBY9Ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.1wd0w8rjox.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001577287066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1wd0w8rjox" + }, + { + "Name": "integrity", + "Value": "sha256-rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.1wd0w8rjox.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1wd0w8rjox" + }, + { + "Name": "integrity", + "Value": "sha256-rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.1wd0w8rjox.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1wd0w8rjox" + }, + { + "Name": "integrity", + "Value": "sha256-SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001577287066" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rwm1+/vP3TeK/5so0V71u6DxkwdBYRaQRaBI6ADzrZA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SkferhyCQgen0Q0bVaVUmzzKf54BJn9mryCBJ0bSZAs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.5ijpt3sd8y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ijpt3sd8y" + }, + { + "Name": "integrity", + "Value": "sha256-/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.5ijpt3sd8y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ijpt3sd8y" + }, + { + "Name": "integrity", + "Value": "sha256-/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.5ijpt3sd8y.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ijpt3sd8y" + }, + { + "Name": "integrity", + "Value": "sha256-Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001677852349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VcosKprsLkLxiLlu11Wb281h1lPKPxZsfLzCM4WsBk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "595" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hna6D7yxgJDMO6Qvk0+TviP45Jd5zzQVrFq4q63mgJY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.9055e45v3y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9055e45v3y" + }, + { + "Name": "integrity", + "Value": "sha256-Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.9055e45v3y.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9055e45v3y" + }, + { + "Name": "integrity", + "Value": "sha256-Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.9055e45v3y.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9055e45v3y" + }, + { + "Name": "integrity", + "Value": "sha256-XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1446" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z+mqCR8lMsH8bfBx2k7JFvvkMnI/5pJYWA+aerMz6fQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XS3hvhogHNDA4GjeQawaMeBbBmxgDY22qkaSS8FOtxo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1278" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.mzoq5ovmw4.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mzoq5ovmw4" + }, + { + "Name": "integrity", + "Value": "sha256-/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.mzoq5ovmw4.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1278" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mzoq5ovmw4" + }, + { + "Name": "integrity", + "Value": "sha256-/gmxESiBxlv2P9+oRjhme2d8kjF5kC4BcO9amX5Y6YA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_sv.min.mzoq5ovmw4.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mzoq5ovmw4" + }, + { + "Name": "integrity", + "Value": "sha256-Lr05yxSHRMyjrNBE5oG8anJofkhKeQ6nfBbrDb1/N84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_sv.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.aehc14qnu3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001386962552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehc14qnu3" + }, + { + "Name": "integrity", + "Value": "sha256-7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.aehc14qnu3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2246" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehc14qnu3" + }, + { + "Name": "integrity", + "Value": "sha256-7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.aehc14qnu3.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehc14qnu3" + }, + { + "Name": "integrity", + "Value": "sha256-1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001386962552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2246" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7ovpYzZ6BLTFoDXPo/wIQEKjRwC0gLEn3Nc3FKT85rM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "720" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1wipOfYpcbHuhtx2sI4CFeaK1DSmIzsPpvbXHrmSYHA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001410437236" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.u9mdi6yy6f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001410437236" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9mdi6yy6f" + }, + { + "Name": "integrity", + "Value": "sha256-/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.u9mdi6yy6f.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2079" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9mdi6yy6f" + }, + { + "Name": "integrity", + "Value": "sha256-/oMypYhRz1LOF3K1NKHTcPv9zWRIuUO+YnHIt8xHQfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_th.min.u9mdi6yy6f.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u9mdi6yy6f" + }, + { + "Name": "integrity", + "Value": "sha256-ZGDvgJtWftQCwTAnuD+1fs5BP0Pyib0O8k04kAOhQXY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_th.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.gbwiohnh5x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001347708895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbwiohnh5x" + }, + { + "Name": "integrity", + "Value": "sha256-5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.gbwiohnh5x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbwiohnh5x" + }, + { + "Name": "integrity", + "Value": "sha256-5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.gbwiohnh5x.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbwiohnh5x" + }, + { + "Name": "integrity", + "Value": "sha256-Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001347708895" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2099" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5N/Ar2B+4B/9M5aVvPH6s+feFzacFB2kCiBEnHM7V3U=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "741" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sb63+CHx1+kaVrI02xZMvLQV5byJk3G7KiEkQLl10lo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.dciy14anm3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001410437236" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dciy14anm3" + }, + { + "Name": "integrity", + "Value": "sha256-XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.dciy14anm3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1910" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dciy14anm3" + }, + { + "Name": "integrity", + "Value": "sha256-XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.dciy14anm3.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dciy14anm3" + }, + { + "Name": "integrity", + "Value": "sha256-xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001410437236" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1910" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XSINdGQp+VNDjxg+p8f5NzDb6/g/03zMDPpmqZGHXwY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tj.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xLcy7gUuiI2JTbXeMRq2vPfwrfmOrbsrVogPE/qBuvg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.g2oy61a6u9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2oy61a6u9" + }, + { + "Name": "integrity", + "Value": "sha256-qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.g2oy61a6u9.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2oy61a6u9" + }, + { + "Name": "integrity", + "Value": "sha256-qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.g2oy61a6u9.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2oy61a6u9" + }, + { + "Name": "integrity", + "Value": "sha256-Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001438848921" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qMekiBa0XFDPQ0l6KoXEwj7vS9kSto8E2Stvz8Ubnfo=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "694" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yq4yMrKjHnEE0tVtUGrfp96kpi/0lluAJFn/0HNh280=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.db363k26vx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "db363k26vx" + }, + { + "Name": "integrity", + "Value": "sha256-t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.db363k26vx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1649" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "db363k26vx" + }, + { + "Name": "integrity", + "Value": "sha256-t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.db363k26vx.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "db363k26vx" + }, + { + "Name": "integrity", + "Value": "sha256-dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1649" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t1bzs81HaZOMj/tCOD44chxy2JjDLyV2qoLpg7S07Nk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_tr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dWAJwTFB3QlYGOe/c9tqWmhcO6bwlYnUjtldLPKo1SQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001259445844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2155" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.kq2pyzi6r0.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001315789474" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2pyzi6r0" + }, + { + "Name": "integrity", + "Value": "sha256-5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.kq2pyzi6r0.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1963" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2pyzi6r0" + }, + { + "Name": "integrity", + "Value": "sha256-5LcyUPcXyy2GIiROWiWDpfu/3ZtGpSYog+978QdKL0M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.min.kq2pyzi6r0.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kq2pyzi6r0" + }, + { + "Name": "integrity", + "Value": "sha256-Ug5CglRhk7XlOua6T1K3RhY0rzvXC4Lr4wLkeLyqhRg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.pjhrttmwp6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001259445844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pjhrttmwp6" + }, + { + "Name": "integrity", + "Value": "sha256-az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.pjhrttmwp6.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2155" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pjhrttmwp6" + }, + { + "Name": "integrity", + "Value": "sha256-az2sDZhJRG30Wf2ma2lq1/JCS0JJYowUn0nAwHwFm+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_uk.pjhrttmwp6.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pjhrttmwp6" + }, + { + "Name": "integrity", + "Value": "sha256-4yi6Hh0wMcZaInrIe8cLvxLN/QcR/+EsAwHRjn1pwWs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_uk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1855" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.5kvovnp309.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001492537313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kvovnp309" + }, + { + "Name": "integrity", + "Value": "sha256-xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.5kvovnp309.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kvovnp309" + }, + { + "Name": "integrity", + "Value": "sha256-xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.5kvovnp309.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5kvovnp309" + }, + { + "Name": "integrity", + "Value": "sha256-d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001492537313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xUCINxq88zoBZda7ZoUTPCzXZhnHnA1qyVPJV5c6wk0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d71jrkLPdcu5nZ/1yugVfRkJEjoZc/AzPNUid3YYRO8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.q21isbddxl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001449275362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q21isbddxl" + }, + { + "Name": "integrity", + "Value": "sha256-DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.q21isbddxl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1855" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q21isbddxl" + }, + { + "Name": "integrity", + "Value": "sha256-DnKew1iZNx7Uo1dXsq+IJuNIh0cOP+xGpS9JSoWnH6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_ur.q21isbddxl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q21isbddxl" + }, + { + "Name": "integrity", + "Value": "sha256-K7HBKXKInfAQDB4aoxn4gik5NP4NIXx/LFRu4veSz5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_ur.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001724137931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.grvvtd979o.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001814882033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "grvvtd979o" + }, + { + "Name": "integrity", + "Value": "sha256-dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.grvvtd979o.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "grvvtd979o" + }, + { + "Name": "integrity", + "Value": "sha256-dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.grvvtd979o.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "grvvtd979o" + }, + { + "Name": "integrity", + "Value": "sha256-C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001814882033" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dGzD1mk73EiQb4W3TX+TgRQYIuIWb7Uyewa+5Arg3KI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C3wx4jMwhlMipYWyE/75sIMGYRCe6h382HdzBevAYIg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.xv8gwt9qal.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001724137931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xv8gwt9qal" + }, + { + "Name": "integrity", + "Value": "sha256-/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.xv8gwt9qal.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xv8gwt9qal" + }, + { + "Name": "integrity", + "Value": "sha256-/VTsjZSor715tKXi6W8roINrc0iif5OpBarg1fo/+yA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_vi.xv8gwt9qal.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xv8gwt9qal" + }, + { + "Name": "integrity", + "Value": "sha256-trOWooP2mGqUFZa0Mdcv7CpyfCZ/u7a55GN1q3LrzOw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_vi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001381215470" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001492537313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.pq65gvpspk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001492537313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq65gvpspk" + }, + { + "Name": "integrity", + "Value": "sha256-n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.pq65gvpspk.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq65gvpspk" + }, + { + "Name": "integrity", + "Value": "sha256-n9IHFquowgflMANhuIq66Z10oyRvP2ylgdisMyLE+eQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.min.pq65gvpspk.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq65gvpspk" + }, + { + "Name": "integrity", + "Value": "sha256-VRtfASBVQO51vad012Ts+1ctDIdS82uUPPLDYRhSRQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.tqg95bub2v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001381215470" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqg95bub2v" + }, + { + "Name": "integrity", + "Value": "sha256-+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.tqg95bub2v.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1436" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqg95bub2v" + }, + { + "Name": "integrity", + "Value": "sha256-+3H1guia6FirvMO0IXjPXLFRIz/Lol7sauZgEsKa7RI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh.tqg95bub2v.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqg95bub2v" + }, + { + "Name": "integrity", + "Value": "sha256-TvJrb0t/7ZpxUfKHULoPo9ll+Vph+mXPSatAvUP2DO0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001379310345" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.k0rsfd5zpx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001379310345" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k0rsfd5zpx" + }, + { + "Name": "integrity", + "Value": "sha256-PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.k0rsfd5zpx.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k0rsfd5zpx" + }, + { + "Name": "integrity", + "Value": "sha256-PLVFnQOXWcSDOzMiB21Wm0UmhThEqKXMl4VTIUsOu1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.k0rsfd5zpx.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "724" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k0rsfd5zpx" + }, + { + "Name": "integrity", + "Value": "sha256-fBLx6Fq4uFt+uVimzQKkIDcDWDh3H1QEwn64XyH/uZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.12syxpjm3r.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001522070015" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "656" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "12syxpjm3r" + }, + { + "Name": "integrity", + "Value": "sha256-iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.12syxpjm3r.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "12syxpjm3r" + }, + { + "Name": "integrity", + "Value": "sha256-iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.12syxpjm3r.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "656" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "12syxpjm3r" + }, + { + "Name": "integrity", + "Value": "sha256-3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001522070015" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "656" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iTfX8wyQ2UdrxN0YGqGOr9JDpgpRY+cnoxdgKMhUibc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "656" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ozoPcGTZ2NbWLUp3Ve3O9HVFVqpQhzI3HXhPZeqRg8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002793296089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.ndfh3lzrud.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002793296089" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ndfh3lzrud" + }, + { + "Name": "integrity", + "Value": "sha256-G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.ndfh3lzrud.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ndfh3lzrud" + }, + { + "Name": "integrity", + "Value": "sha256-G6/6Q5QuH2sDGYE1C4KlO4xj9ciopo5eOqrN++hQ564=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.min.ndfh3lzrud.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ndfh3lzrud" + }, + { + "Name": "integrity", + "Value": "sha256-gRJaLedZ8pINQhlrSZf/S702jd517Qmu9hL1WfIm7bk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.t4n9iggmu2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4n9iggmu2" + }, + { + "Name": "integrity", + "Value": "sha256-oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.t4n9iggmu2.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4n9iggmu2" + }, + { + "Name": "integrity", + "Value": "sha256-oxABKISJThKAh2YjsnsmpCjbe5sNnqBTJcCvslmA82w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_de.t4n9iggmu2.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4n9iggmu2" + }, + { + "Name": "integrity", + "Value": "sha256-yALiywY7OmXmkfBk4s6/Imw2z2Qpjr8BlcIEjxgxmuw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.mhq5x1add5.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhq5x1add5" + }, + { + "Name": "integrity", + "Value": "sha256-pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.mhq5x1add5.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhq5x1add5" + }, + { + "Name": "integrity", + "Value": "sha256-pqUiwPlktxriawo3G2r8MWJb2x2/x7/PW7XSU4TcTxI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.mhq5x1add5.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mhq5x1add5" + }, + { + "Name": "integrity", + "Value": "sha256-82VDciNVAGzlrtjp3QfLwBgY4c+zRGVi+aJaqZ9KuJA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.rdxeuqmxiq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.rdxeuqmxiq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.rdxeuqmxiq.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.h6ohelmcs7.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002906976744" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6ohelmcs7" + }, + { + "Name": "integrity", + "Value": "sha256-V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.h6ohelmcs7.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6ohelmcs7" + }, + { + "Name": "integrity", + "Value": "sha256-V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.h6ohelmcs7.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h6ohelmcs7" + }, + { + "Name": "integrity", + "Value": "sha256-/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002906976744" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V8mu/SVwHYeZBAMeY8G8mkvslCCcmRBLvg72RnPyjiU=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/AlfzphVBG4zeBxQKOE14OnM6+XJGQmryNuvlOdVU+s=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.qbw80k7qra.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbw80k7qra" + }, + { + "Name": "integrity", + "Value": "sha256-phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.qbw80k7qra.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbw80k7qra" + }, + { + "Name": "integrity", + "Value": "sha256-phXadsZZcolyvRXKXfaUXifMlJ0kLdeja6P+sMeL+rw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_fi.qbw80k7qra.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qbw80k7qra" + }, + { + "Name": "integrity", + "Value": "sha256-tZLlUTcALVRqvzQ5NPcTk5cqF7A7TpfSDHk/ZtAsciw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_fi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.b16ae72i8u.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b16ae72i8u" + }, + { + "Name": "integrity", + "Value": "sha256-Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.b16ae72i8u.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b16ae72i8u" + }, + { + "Name": "integrity", + "Value": "sha256-Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.b16ae72i8u.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b16ae72i8u" + }, + { + "Name": "integrity", + "Value": "sha256-WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002710027100" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "711" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Dyd36ckXRwAqMsUlAAL0/B1KTnog4Y3S/463JvcAf18=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "368" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WjvdTXFkCxc1U8w9I4YDt4C2pM2xyk5jzFjxAzDB1qM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.rdxeuqmxiq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002801120448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.rdxeuqmxiq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-gTnE3RRqe6/wzs8W9RH5qpO91NOCC77bPKARvTYABK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_it.min.rdxeuqmxiq.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxeuqmxiq" + }, + { + "Name": "integrity", + "Value": "sha256-pcWWUI1UaM4aZeVIAObUDDdAXgKltX5UyL/1b4TgGPw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_it.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.ah0xlkcu72.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ah0xlkcu72" + }, + { + "Name": "integrity", + "Value": "sha256-UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.ah0xlkcu72.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ah0xlkcu72" + }, + { + "Name": "integrity", + "Value": "sha256-UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.ah0xlkcu72.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ah0xlkcu72" + }, + { + "Name": "integrity", + "Value": "sha256-nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002680965147" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UjpaeKGaVN7N9/HFa2ZZbUzi2KKGkWtNNtQvg0a0Pks=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "372" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nwqdpmkEJH0h4RWiPfGVWg+oSgxLQcACPLJNA3WQyjM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.6pbjomyyi3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbjomyyi3" + }, + { + "Name": "integrity", + "Value": "sha256-+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.6pbjomyyi3.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbjomyyi3" + }, + { + "Name": "integrity", + "Value": "sha256-+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.6pbjomyyi3.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbjomyyi3" + }, + { + "Name": "integrity", + "Value": "sha256-nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002754820937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "572" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+pEhJ+kh+dQwUPIxJhFHjD2lRLjKuQwqCLL3kf8o2Tg=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_nl.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "362" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nSpKx4HNHDkalDYnOKLCIeRYNZN5dG8Yg0LyvmHuwo4=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003058103976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.wsa6gklf1x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsa6gklf1x" + }, + { + "Name": "integrity", + "Value": "sha256-0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.wsa6gklf1x.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "462" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsa6gklf1x" + }, + { + "Name": "integrity", + "Value": "sha256-0JOlNonQOxDfDs7IL/+DbyfX1vGH9g69CJ1EBNT6Nlc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.min.wsa6gklf1x.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsa6gklf1x" + }, + { + "Name": "integrity", + "Value": "sha256-oNZtINsbToIEE8p6BZpGSv7ny/1XrpM5OOvkikR2s+A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.vp5jhy9xwq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003058103976" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vp5jhy9xwq" + }, + { + "Name": "integrity", + "Value": "sha256-s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.vp5jhy9xwq.js", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vp5jhy9xwq" + }, + { + "Name": "integrity", + "Value": "sha256-s+xQ0v9oRhIWtrZNkS7Tvg0YC7uRN3tvfOD5XVXWxVw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery-validation/localization/methods_pt.vp5jhy9xwq.js.gz", + "AssetFile": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vp5jhy9xwq" + }, + { + "Name": "integrity", + "Value": "sha256-/kiOFxKZ9rApMR0eEN4NvDCIlWypMyuLbhZ57df9Egs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery-validation/localization/methods_pt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.7s2n0ol71w.js", + "AssetFile": "adminlte/plugins/jquery/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011625068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7s2n0ol71w" + }, + { + "Name": "integrity", + "Value": "sha256-KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.7s2n0ol71w.js", + "AssetFile": "adminlte/plugins/jquery/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "299461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7s2n0ol71w" + }, + { + "Name": "integrity", + "Value": "sha256-KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.7s2n0ol71w.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7s2n0ol71w" + }, + { + "Name": "integrity", + "Value": "sha256-nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.js", + "AssetFile": "adminlte/plugins/jquery/jquery.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011625068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.js", + "AssetFile": "adminlte/plugins/jquery/jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "299461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KSI/3xxCrCexCupdzQJRP1B6Iqg+2NA+X2u38cQdqq8=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "86020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nhQHdQkwFcesvAOa1mM4Bqr7crDHd8rrjqnKmx0KfzM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.ehgnz7f14e.js", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032304959" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30954" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ehgnz7f14e" + }, + { + "Name": "integrity", + "Value": "sha256-zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.ehgnz7f14e.js", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ehgnz7f14e" + }, + { + "Name": "integrity", + "Value": "sha256-zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.ehgnz7f14e.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30954" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ehgnz7f14e" + }, + { + "Name": "integrity", + "Value": "sha256-JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.js", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032304959" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30954" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.js", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zp0HUArZHsK1JMJwdk7EyaM+eDINjTdOxADt5Ij2JRs=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30954" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JiyFLeIep9MgkuK5Bm1WQjHiKyrS4TDRKU7Q0UlsW70=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.jtmsrjfkua.map", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018123493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55176" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtmsrjfkua" + }, + { + "Name": "integrity", + "Value": "sha256-h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.map" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.jtmsrjfkua.map", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "137960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtmsrjfkua" + }, + { + "Name": "integrity", + "Value": "sha256-h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.map" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.jtmsrjfkua.map.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55176" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jtmsrjfkua" + }, + { + "Name": "integrity", + "Value": "sha256-VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.min.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.map", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018123493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55176" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.map", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "137960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3kHBWvsN5koZRCQhj58SLMjDtMYV/BDyY03foi8uwM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.min.map.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.min.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55176" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFCw8zQQyDdVWnrEZ5y2nYDBpZ9Tn1yvK/MsGtEddWY=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.gkye80tccc.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014279187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gkye80tccc" + }, + { + "Name": "integrity", + "Value": "sha256-gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.gkye80tccc.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "244123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gkye80tccc" + }, + { + "Name": "integrity", + "Value": "sha256-gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.gkye80tccc.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gkye80tccc" + }, + { + "Name": "integrity", + "Value": "sha256-bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014279187" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "244123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gIHsBPGH6SmJLFXfgokAl7egafh7HhhkQqq0sldou5k=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "70031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bG4umkuYxGmDEewzSVAntJAOVqGvK8VJ41yfxdhvoDI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.jkr59enbf0.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040576182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jkr59enbf0" + }, + { + "Name": "integrity", + "Value": "sha256-0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.jkr59enbf0.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "72374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jkr59enbf0" + }, + { + "Name": "integrity", + "Value": "sha256-0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.jkr59enbf0.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jkr59enbf0" + }, + { + "Name": "integrity", + "Value": "sha256-WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000040576182" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.js", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "72374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0+tlxnVJXkkkTkZyQ5nuZ8+MHFX38mrW8KxSvcGMfjI=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.js.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "24644" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WlDUYMD5bZCPEpiRV2PetqPvtO03f2JJxYNtrCUy8Ls=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.l5o0ocrnlv.map", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022731406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43991" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5o0ocrnlv" + }, + { + "Name": "integrity", + "Value": "sha256-t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.map" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.l5o0ocrnlv.map", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "110315" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5o0ocrnlv" + }, + { + "Name": "integrity", + "Value": "sha256-t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.map" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.l5o0ocrnlv.map.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43991" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l5o0ocrnlv" + }, + { + "Name": "integrity", + "Value": "sha256-sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jquery/jquery.slim.min.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.map", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000022731406" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43991" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.map", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "110315" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t03Zb25897OIoeFTkVzcbt/KuVlMjvbCAAv8FVqAboM=" + } + ] + }, + { + "Route": "adminlte/plugins/jquery/jquery.slim.min.map.gz", + "AssetFile": "adminlte/plugins/jquery/jquery.slim.min.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43991" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxYWnY/WFhZKdb8sUsK9TmNMJGWznaKQ8JVPDT79XJg=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000127518490" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.09ipkzh929.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000163826999" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "09ipkzh929" + }, + { + "Name": "integrity", + "Value": "sha256-XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.09ipkzh929.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "09ipkzh929" + }, + { + "Name": "integrity", + "Value": "sha256-XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.09ipkzh929.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "09ipkzh929" + }, + { + "Name": "integrity", + "Value": "sha256-bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000163826999" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "21159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XIeS1l9F3l/0sIhJLjJwfDwUvKsMvDp+AhYuA+lz8bA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bkz5oavBRi2OqfA/nTqvXRQhHD+7ccXd/IodqKcLniQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.n0jiz5rp1u.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000127518490" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n0jiz5rp1u" + }, + { + "Name": "integrity", + "Value": "sha256-x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.n0jiz5rp1u.js", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n0jiz5rp1u" + }, + { + "Name": "integrity", + "Value": "sha256-x1c3Yr9yOFpCRYoJ5coy2iWc0X2oFQmsTsoqr35jnZQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jquery.vmap.n0jiz5rp1u.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/jquery.vmap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7841" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n0jiz5rp1u" + }, + { + "Name": "integrity", + "Value": "sha256-PyFoIXHS4JjYnuJa4fQQIWY3VgA21pqmcZy8o5z+Qp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jquery.vmap.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "796" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.css.gz", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.dfvnexcb4p.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003105590062" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfvnexcb4p" + }, + { + "Name": "integrity", + "Value": "sha256-J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.css" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.dfvnexcb4p.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "796" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfvnexcb4p" + }, + { + "Name": "integrity", + "Value": "sha256-J49vUB/GFwb+iaqa6gENZJGHfXR+ieeX6fUnQ7P1b+E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.css" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.dfvnexcb4p.css.gz", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "321" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dfvnexcb4p" + }, + { + "Name": "integrity", + "Value": "sha256-5GBkbDI7KxGKWbqiw95yq7SPXbIwtpaLiXFfMvC2Ufc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.03ecg3l3mu.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003424657534" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03ecg3l3mu" + }, + { + "Name": "integrity", + "Value": "sha256-TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.03ecg3l3mu.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03ecg3l3mu" + }, + { + "Name": "integrity", + "Value": "sha256-TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.03ecg3l3mu.css.gz", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "03ecg3l3mu" + }, + { + "Name": "integrity", + "Value": "sha256-M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/jqvmap.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003424657534" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.css", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TN5XXBh0AGFsCpDuWgC7sUHVk8jb6eWHtOVT9/ltEwI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/jqvmap.min.css.gz", + "AssetFile": "adminlte/plugins/jqvmap/jqvmap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "291" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M3zs/IexTOX/Tfi8HL/8t5zci90pZ09fM6n2zMXekiQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.h4wsvih9iy.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000142429853" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4wsvih9iy" + }, + { + "Name": "integrity", + "Value": "sha256-oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.h4wsvih9iy.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4wsvih9iy" + }, + { + "Name": "integrity", + "Value": "sha256-oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.h4wsvih9iy.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4wsvih9iy" + }, + { + "Name": "integrity", + "Value": "sha256-VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000142429853" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oegoynPMUn5qz2bH20JUu13pA13U1l5WEmBoTV3uULE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VLzTlN9gJB/pRbsXclcKhPw+nF9/4DFUOEVN4s1bvV0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.edo5i5xfay.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000086918731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11504" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "edo5i5xfay" + }, + { + "Name": "integrity", + "Value": "sha256-Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.edo5i5xfay.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "29673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "edo5i5xfay" + }, + { + "Name": "integrity", + "Value": "sha256-Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.edo5i5xfay.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11504" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "edo5i5xfay" + }, + { + "Name": "integrity", + "Value": "sha256-j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000086918731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11504" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "29673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Xp/AhSuI5N7xf4Vc+IM/GcjqexKk4/H1uO2N+gGvqb0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "11504" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j7JKXepty9dL88mCs3fqdpuZi/ybCH1Jsljc8sJeOxs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.5iu8n8c9xx.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000577700751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5iu8n8c9xx" + }, + { + "Name": "integrity", + "Value": "sha256-beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.5iu8n8c9xx.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5iu8n8c9xx" + }, + { + "Name": "integrity", + "Value": "sha256-beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.5iu8n8c9xx.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5iu8n8c9xx" + }, + { + "Name": "integrity", + "Value": "sha256-mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000577700751" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3754" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-beNyGBf/6WwTBzjcX6swIA6GXODxySM6P+dHnIebSnM=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1730" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mRagYwn0xUbjPeXwQsK4RmAxaNb4DL24LFp/fPh/Tlo=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.3igx467lbz.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000156519017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3igx467lbz" + }, + { + "Name": "integrity", + "Value": "sha256-NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.3igx467lbz.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3igx467lbz" + }, + { + "Name": "integrity", + "Value": "sha256-NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.3igx467lbz.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3igx467lbz" + }, + { + "Name": "integrity", + "Value": "sha256-cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000156519017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "15690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NSKmdrQxoG6R4h5KxkUlBHSNe0WYuoa2RCUz2055Buo=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6388" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cjO1g80KphOg7913o/jX3b8L4+CWaRK8t3+7BhIHKZE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000155279503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.tsitc247sr.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000155279503" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsitc247sr" + }, + { + "Name": "integrity", + "Value": "sha256-kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.tsitc247sr.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsitc247sr" + }, + { + "Name": "integrity", + "Value": "sha256-kyfq8M2zePvkO+aa3jN7/fR9z0hQP8/2wFS/Kr2+8Yk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.tsitc247sr.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tsitc247sr" + }, + { + "Name": "integrity", + "Value": "sha256-oR2byJXZGo/ICyg3WQ42UehCHLdKJDIzdnh5ByAIxBM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.jatv90hu42.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000339328130" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jatv90hu42" + }, + { + "Name": "integrity", + "Value": "sha256-C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.jatv90hu42.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6100" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jatv90hu42" + }, + { + "Name": "integrity", + "Value": "sha256-C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.jatv90hu42.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jatv90hu42" + }, + { + "Name": "integrity", + "Value": "sha256-ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000339328130" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6100" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9/EePJseIIMxXGY2FJcowLhVuy58WVjnJ5xgvNxPE4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ozwXCkB/E/B7dYwrJxONw2PJK4ickH0VUUCradt40gY=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.2w477ewnpv.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044674768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2w477ewnpv" + }, + { + "Name": "integrity", + "Value": "sha256-fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.2w477ewnpv.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "93038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2w477ewnpv" + }, + { + "Name": "integrity", + "Value": "sha256-fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.2w477ewnpv.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2w477ewnpv" + }, + { + "Name": "integrity", + "Value": "sha256-LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044674768" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "93038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fsxDB4UeOyfzVHp3voH0uZ7VNe9opXXRqt5nslouqFQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22383" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LMxuHH41J7Z+yPCwp7C8sCfM0UVfQdDorG4rmNqg8xU=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.df1xlrui5o.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067163678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "df1xlrui5o" + }, + { + "Name": "integrity", + "Value": "sha256-h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.df1xlrui5o.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "df1xlrui5o" + }, + { + "Name": "integrity", + "Value": "sha256-h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.df1xlrui5o.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "df1xlrui5o" + }, + { + "Name": "integrity", + "Value": "sha256-z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067163678" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "37116" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5nlObGAep+IlY7R7mVlBChIw5mwPnua95262J08fn0=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14888" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z12Ffu2IC4MFl6DKHGgSEg89UR/AMy0edF8R2vzNHVM=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037420948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "147490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.qk3fm0xufm.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037420948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qk3fm0xufm" + }, + { + "Name": "integrity", + "Value": "sha256-Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.qk3fm0xufm.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "147490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qk3fm0xufm" + }, + { + "Name": "integrity", + "Value": "sha256-Jto9j2JvWRqFpPcL0RdLVeBXzw6ayAl6jZX5udwlixc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.qk3fm0xufm.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qk3fm0xufm" + }, + { + "Name": "integrity", + "Value": "sha256-wIFeHzzyZNUFTalg5QdOPBut0bv+42wEpc5CB+m3eTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.5auzc5u8p3.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021463373" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5auzc5u8p3" + }, + { + "Name": "integrity", + "Value": "sha256-DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.5auzc5u8p3.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "125281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5auzc5u8p3" + }, + { + "Name": "integrity", + "Value": "sha256-DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.5auzc5u8p3.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5auzc5u8p3" + }, + { + "Name": "integrity", + "Value": "sha256-pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021463373" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "125281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DSS9REPVkJwlCFhAkcJ6w55kxXNtnWBJtjM+pe0zCaI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pxXgv91upywwUvXbtCbJ20NGjbS6+JIX3T00HKab0ew=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000039947270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "64528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.ywrzid3dop.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000039947270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ywrzid3dop" + }, + { + "Name": "integrity", + "Value": "sha256-Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.ywrzid3dop.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "64528" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ywrzid3dop" + }, + { + "Name": "integrity", + "Value": "sha256-Eo6TdaGyPUBMvhsmIkr8SM50F999gET70I0jGPuics8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.ywrzid3dop.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "25032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ywrzid3dop" + }, + { + "Name": "integrity", + "Value": "sha256-1KZcptGeUyQ/SVgb8LEnhMOvl8SVkRRYMfVxO0vdHCE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.dufgjcdual.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026590794" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dufgjcdual" + }, + { + "Name": "integrity", + "Value": "sha256-y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.dufgjcdual.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "97654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dufgjcdual" + }, + { + "Name": "integrity", + "Value": "sha256-y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.dufgjcdual.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dufgjcdual" + }, + { + "Name": "integrity", + "Value": "sha256-CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026590794" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "97654" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y1hQ4vK5wT35aP8MBkwGG/+anG7XdF/k1deSbO9UZmA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37606" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CyaHkyJso0Qi0XFNn02sluAYs31ynaMVQM4O7IxXRGw=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027270992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "144037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.zp8jwov6hi.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027270992" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp8jwov6hi" + }, + { + "Name": "integrity", + "Value": "sha256-GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.zp8jwov6hi.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "144037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp8jwov6hi" + }, + { + "Name": "integrity", + "Value": "sha256-GV2NLRvQa3SzM/VPIsM7JL5HTsIg+mOl6LXrBTcDAP4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.zp8jwov6hi.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36668" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zp8jwov6hi" + }, + { + "Name": "integrity", + "Value": "sha256-p39GAXBOiVMZzQwKexsAdMJdUJzf+NrLtx65RFo9wNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.france.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.0nk8sqdizr.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045222267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nk8sqdizr" + }, + { + "Name": "integrity", + "Value": "sha256-hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.0nk8sqdizr.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "55441" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nk8sqdizr" + }, + { + "Name": "integrity", + "Value": "sha256-hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.0nk8sqdizr.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0nk8sqdizr" + }, + { + "Name": "integrity", + "Value": "sha256-SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045222267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "55441" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hFHEVTV9tW7i93mgNtXePx6RAosb5FRqQcBwzMGgxEc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22112" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SqVA1kpkOIY6DZGt9q5iP3GttPwU1ZzP47y5idBxCuI=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.7w0s4r1x72.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032768621" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7w0s4r1x72" + }, + { + "Name": "integrity", + "Value": "sha256-eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.7w0s4r1x72.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "82231" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7w0s4r1x72" + }, + { + "Name": "integrity", + "Value": "sha256-eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.7w0s4r1x72.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7w0s4r1x72" + }, + { + "Name": "integrity", + "Value": "sha256-ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032768621" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "82231" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eezxScxev2jOXT+/o5MHtDYz+Wg1CGWhq+DMi+Ay0Mg=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ShmnJ4juyo2adxwueH/giIuAcON8dp73O7ksXPt8cXY=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021092152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "138858" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.zcvy7z56av.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021092152" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcvy7z56av" + }, + { + "Name": "integrity", + "Value": "sha256-vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.zcvy7z56av.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "138858" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcvy7z56av" + }, + { + "Name": "integrity", + "Value": "sha256-vYnIdo3uUwKad5gk6OUF//aqFtfLHi3juSAbeSdDJTs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.zcvy7z56av.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "47410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zcvy7z56av" + }, + { + "Name": "integrity", + "Value": "sha256-VBnhaAqHg9f+WPUPcrrcIqxvdThADsJHx4bLLdgwJ9E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035488679" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "79942" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.okcp6184am.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035488679" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okcp6184am" + }, + { + "Name": "integrity", + "Value": "sha256-6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.okcp6184am.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "79942" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okcp6184am" + }, + { + "Name": "integrity", + "Value": "sha256-6PUp0B8x31widOONMKpBA4PH9Gn+but8OWVNl8fnosk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.okcp6184am.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okcp6184am" + }, + { + "Name": "integrity", + "Value": "sha256-sxz2OxO2/EdhpddcWF5AXODRZgowkw68kWWNxWj6Bw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.djkn2d4f8o.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000055766228" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djkn2d4f8o" + }, + { + "Name": "integrity", + "Value": "sha256-uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.djkn2d4f8o.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "52804" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djkn2d4f8o" + }, + { + "Name": "integrity", + "Value": "sha256-uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.djkn2d4f8o.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djkn2d4f8o" + }, + { + "Name": "integrity", + "Value": "sha256-tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000055766228" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "52804" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uV0I2rxNaI4kmULfysGKpFOB2Kv1GFZ4D4/6WiRAJvA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tfpAmzS6MsUhFVK/Ap26EVufpxm06btNdCeAEb64DaU=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000162919518" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6137" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6137" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.li0kpsui98.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000162919518" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6137" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li0kpsui98" + }, + { + "Name": "integrity", + "Value": "sha256-nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.li0kpsui98.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19634" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li0kpsui98" + }, + { + "Name": "integrity", + "Value": "sha256-nUjWGfOM6YJnKGs9S8sjeQzh7HKm7Tt0t6465lJ2OrE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.li0kpsui98.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6137" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "li0kpsui98" + }, + { + "Name": "integrity", + "Value": "sha256-OAmoj6GNRCHTGZ83fpfDz3JU2MvWWEo2T5sjL68XFzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.hv24q0mzyu.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021504914" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46500" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hv24q0mzyu" + }, + { + "Name": "integrity", + "Value": "sha256-c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.hv24q0mzyu.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "157653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hv24q0mzyu" + }, + { + "Name": "integrity", + "Value": "sha256-c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.hv24q0mzyu.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46500" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hv24q0mzyu" + }, + { + "Name": "integrity", + "Value": "sha256-DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021504914" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46500" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "157653" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c57aThdHTDLCCPTytvBSH8AFtWsC1Goms+Zs6kyvABs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "46500" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DrdOkfdOa6jQO5hEQzaReZf5XNEzBFpMlc3/smAIypc=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.72nhiwrr8b.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021893336" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "45675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nhiwrr8b" + }, + { + "Name": "integrity", + "Value": "sha256-AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.72nhiwrr8b.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "99544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nhiwrr8b" + }, + { + "Name": "integrity", + "Value": "sha256-AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.72nhiwrr8b.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "45675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "72nhiwrr8b" + }, + { + "Name": "integrity", + "Value": "sha256-ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000021893336" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "45675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "99544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AS8mIjPNCviSE9FUDiliRnfN+BnqTCe6Jn6+/Ivh5O4=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "45675" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ij5OeVZ91xvRuYSqUMxfFpWgUYj1h5K2MlIp6Aktt4Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035320712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "75326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.veudbjz142.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035320712" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "veudbjz142" + }, + { + "Name": "integrity", + "Value": "sha256-yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.veudbjz142.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "75326" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "veudbjz142" + }, + { + "Name": "integrity", + "Value": "sha256-yZ34AHDJ/HmRQ3Fjq3rBY0LyAkkmBdAp6sr252KqCcw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.veudbjz142.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28311" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "veudbjz142" + }, + { + "Name": "integrity", + "Value": "sha256-rAovoGeIW1AtFtnG3OSICvPlBbmRHiIMv3w78nLacls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.hoak3rk8nk.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012011435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoak3rk8nk" + }, + { + "Name": "integrity", + "Value": "sha256-EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.hoak3rk8nk.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "185884" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoak3rk8nk" + }, + { + "Name": "integrity", + "Value": "sha256-EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.hoak3rk8nk.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hoak3rk8nk" + }, + { + "Name": "integrity", + "Value": "sha256-6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000012011435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "185884" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EeJwlu+xRdg+dGbk3um7hJVmt0p0hAVLmAHkz7xZNQU=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "83253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Ypn5V2GPmNAtXU6ygsJZAmcsLVwCvA8+7iTvXrAoy8=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.cis72k0riw.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011014065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cis72k0riw" + }, + { + "Name": "integrity", + "Value": "sha256-7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.cis72k0riw.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "242384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cis72k0riw" + }, + { + "Name": "integrity", + "Value": "sha256-7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.cis72k0riw.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cis72k0riw" + }, + { + "Name": "integrity", + "Value": "sha256-suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011014065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "242384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7KHvftOHsKfIPPUmu8JoZNH3l3AEUG9ix9ip+a40mCQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "90792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-suWIop6W+e0xPPS1N46KYoO38jCVEPnAOB+gND9tqiY=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.932076n98y.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000049701789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20119" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "932076n98y" + }, + { + "Name": "integrity", + "Value": "sha256-awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.932076n98y.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "47714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "932076n98y" + }, + { + "Name": "integrity", + "Value": "sha256-awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.932076n98y.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20119" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "932076n98y" + }, + { + "Name": "integrity", + "Value": "sha256-wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002346834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1142758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.odr2quo9tf.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002346834" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odr2quo9tf" + }, + { + "Name": "integrity", + "Value": "sha256-HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.odr2quo9tf.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1142758" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odr2quo9tf" + }, + { + "Name": "integrity", + "Value": "sha256-HEmOKUuC3KAxVCCQfJ0o9uVwmaK/80krzWQn50T4F1E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.odr2quo9tf.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426105" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odr2quo9tf" + }, + { + "Name": "integrity", + "Value": "sha256-Q5+LpppYPNpBi9C/CeV9kaMPlUjp9/bRMtoVmhXynqo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002556002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "944498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.rfughjn0g5.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002556002" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfughjn0g5" + }, + { + "Name": "integrity", + "Value": "sha256-6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.rfughjn0g5.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "944498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfughjn0g5" + }, + { + "Name": "integrity", + "Value": "sha256-6bTnYqsWixnq/qKV3fQCl44vUa+W87vJZ3P0E4lcgCs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.rfughjn0g5.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "391235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rfughjn0g5" + }, + { + "Name": "integrity", + "Value": "sha256-WCGTvBgkCV6jISrYRofy8svtRR9sBOMrPj+jQHTlhJU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000049701789" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20119" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "47714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-awbC3furb+P/CvbUBLtXHrBerjM9nlXnyzjwc8IVrvA=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "20119" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wgRB5Sb+OemPUiM4S6DJcyZ024z3kKQrNFipdYWNMAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.gw5jrxdqm3.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042560436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gw5jrxdqm3" + }, + { + "Name": "integrity", + "Value": "sha256-YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.gw5jrxdqm3.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "60601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gw5jrxdqm3" + }, + { + "Name": "integrity", + "Value": "sha256-YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.gw5jrxdqm3.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gw5jrxdqm3" + }, + { + "Name": "integrity", + "Value": "sha256-cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000042560436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "60601" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YOy2YFpN9b2pGM3jlwatbBtMePYkwZAcFlLC1A3NM2Y=" + } + ] + }, + { + "Route": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz", + "AssetFile": "adminlte/plugins/jqvmap/maps/jquery.vmap.world.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23495" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cFGINySJWwK+KlsUFOICsDVkSjPs2IC7GMGq1Ssec5Q=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.g3cug6bgtw.js", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000208029956" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3cug6bgtw" + }, + { + "Name": "integrity", + "Value": "sha256-vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/demos/db.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.g3cug6bgtw.js", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3cug6bgtw" + }, + { + "Name": "integrity", + "Value": "sha256-vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/demos/db.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.g3cug6bgtw.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g3cug6bgtw" + }, + { + "Name": "integrity", + "Value": "sha256-D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/demos/db.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.js", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000208029956" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.js", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vDAWgXWP0HIfxxkqaWvREQgnkA+61aSZkndnqHwpwPI=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/demos/db.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/demos/db.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4806" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D6IsLKgyrEgHDSWBUsgmGnQekKqBmCFbQsi3zjDT/ek=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.0b2tnu0ezq.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001440922190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "693" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0b2tnu0ezq" + }, + { + "Name": "integrity", + "Value": "sha256-7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.0b2tnu0ezq.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1920" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0b2tnu0ezq" + }, + { + "Name": "integrity", + "Value": "sha256-7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.0b2tnu0ezq.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "693" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0b2tnu0ezq" + }, + { + "Name": "integrity", + "Value": "sha256-ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001440922190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "693" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1920" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7N/z24ixg38RRR/AfTOUmj04DhbwBFsdqU5C6STrkQI=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "693" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ybstljckC58C+neDl1PWzxwYwkj4cepKadAn2ITbVA0=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.63on7zemsv.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001524390244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "63on7zemsv" + }, + { + "Name": "integrity", + "Value": "sha256-TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.63on7zemsv.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "63on7zemsv" + }, + { + "Name": "integrity", + "Value": "sha256-TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.63on7zemsv.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "63on7zemsv" + }, + { + "Name": "integrity", + "Value": "sha256-Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001524390244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1829" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TvPCq0Sir4/5uUcPx2Ulj0MAnwbNR5mrG7yfCSDAqjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "655" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fle8TsS6EPABrdFz1X9I630fdtlMf4wdacB49xnnQuw=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.73rl6bg1vt.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001612903226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73rl6bg1vt" + }, + { + "Name": "integrity", + "Value": "sha256-Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.73rl6bg1vt.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1869" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73rl6bg1vt" + }, + { + "Name": "integrity", + "Value": "sha256-Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.73rl6bg1vt.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73rl6bg1vt" + }, + { + "Name": "integrity", + "Value": "sha256-m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001612903226" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1869" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y45whO9BlpEbj0Vq8abz9lLmjG/ReC4peMLYj5nHA2U=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "619" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m27HPtl84ntwXBDKC/K592UKT0YxE7lig4po+5/g0w4=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001488095238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.vfemabt470.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001488095238" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vfemabt470" + }, + { + "Name": "integrity", + "Value": "sha256-ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.vfemabt470.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1896" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vfemabt470" + }, + { + "Name": "integrity", + "Value": "sha256-ZefFRxIxayO4+smSrTjebwH+u3P4HSjphPyuE9oEpEk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-he.vfemabt470.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "671" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vfemabt470" + }, + { + "Name": "integrity", + "Value": "sha256-R63stKm0CkWWBAK91xr1VjqWDMmacWR20JDNBDfuuxA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-he.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001351351351" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1932" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.s8c6r3ie7g.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001351351351" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8c6r3ie7g" + }, + { + "Name": "integrity", + "Value": "sha256-fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.s8c6r3ie7g.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1932" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8c6r3ie7g" + }, + { + "Name": "integrity", + "Value": "sha256-fAr2akEnHeB/f1Nmfu1kz3SZC1zHsrA+d8GT/IifJAc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.s8c6r3ie7g.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "739" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8c6r3ie7g" + }, + { + "Name": "integrity", + "Value": "sha256-Oj4pKKpSaLsFs26Zlrx2sFcvdsBwDN36NntS7IPxzto=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ja.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001212121212" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2947" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.v14yz2pwr0.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001212121212" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v14yz2pwr0" + }, + { + "Name": "integrity", + "Value": "sha256-/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.v14yz2pwr0.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2947" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v14yz2pwr0" + }, + { + "Name": "integrity", + "Value": "sha256-/duFPWaES7/9gJe08TtySEWKo6rWOov8WFXXWU+OhbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.v14yz2pwr0.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "824" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v14yz2pwr0" + }, + { + "Name": "integrity", + "Value": "sha256-+e5BR+YfqllJ08wz6o8O1b8dnI/cbiFTacoz82FLLSY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ka.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.9jd13zllys.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001445086705" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "691" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jd13zllys" + }, + { + "Name": "integrity", + "Value": "sha256-OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.9jd13zllys.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jd13zllys" + }, + { + "Name": "integrity", + "Value": "sha256-OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.9jd13zllys.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "691" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jd13zllys" + }, + { + "Name": "integrity", + "Value": "sha256-nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001445086705" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "691" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OyZ0vN9xl+/aEegmOG0Xp/7wzWVnrZOe6bfQvWaiMok=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "691" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nR43IBGWMkZ2gQ4PtT0S4oZ5hk7KPVLT+6BR19mCN3A=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.06zzi3pzaq.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001457725948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "06zzi3pzaq" + }, + { + "Name": "integrity", + "Value": "sha256-yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.06zzi3pzaq.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "06zzi3pzaq" + }, + { + "Name": "integrity", + "Value": "sha256-yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.06zzi3pzaq.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "06zzi3pzaq" + }, + { + "Name": "integrity", + "Value": "sha256-R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001457725948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1876" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yCpEH/VsxSUv0Tms+lph24xninSEbm3pBds6IGwrlx0=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "685" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R+thlsIeCCzXAVwayAF1k0ys3Os8Qnkp8oTw/JgILaE=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.ftl0f5u5k4.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001474926254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftl0f5u5k4" + }, + { + "Name": "integrity", + "Value": "sha256-czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.ftl0f5u5k4.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftl0f5u5k4" + }, + { + "Name": "integrity", + "Value": "sha256-czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.ftl0f5u5k4.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ftl0f5u5k4" + }, + { + "Name": "integrity", + "Value": "sha256-KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001474926254" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=\"" + }, + { + "Name": "ETag", + "Value": "W/\"czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-czFlXjeGa2oZe7QbD26TNHvJZKMFJvyRxG0TeKQPptg=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "677" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KR6E0wF0W//Vt+r4jSs2dNcmcOYcRan/IEkjbj66Oms=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.adh6eoyh4f.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001221001221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "adh6eoyh4f" + }, + { + "Name": "integrity", + "Value": "sha256-ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.adh6eoyh4f.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "adh6eoyh4f" + }, + { + "Name": "integrity", + "Value": "sha256-ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.adh6eoyh4f.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "adh6eoyh4f" + }, + { + "Name": "integrity", + "Value": "sha256-ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001221001221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2347" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ktTSyuDIMBCqXutmw/VnFAtYa4eeOCQqvcMBmm92/TY=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ddSaHYx/pgpQnz8EGTlAx3i/4Dz2ljY4K7g1MDpyBLY=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.fy8k4y881a.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001499250375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fy8k4y881a" + }, + { + "Name": "integrity", + "Value": "sha256-qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.fy8k4y881a.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1838" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fy8k4y881a" + }, + { + "Name": "integrity", + "Value": "sha256-qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.fy8k4y881a.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fy8k4y881a" + }, + { + "Name": "integrity", + "Value": "sha256-7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001499250375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1838" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qcmdWMgLt+b6MD/s0xMRMeIYOvFMbCqh5QiqWKyqbN8=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "666" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7D0mH3kMEcDVXNJeGDD9YGBe2BwFh/slX350ScAlgYM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.pno782qzgv.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001481481481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pno782qzgv" + }, + { + "Name": "integrity", + "Value": "sha256-a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.pno782qzgv.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pno782qzgv" + }, + { + "Name": "integrity", + "Value": "sha256-a9cx+KGWy3rFNm9uPS1fFwz3+T9mfh5y89UowIa/Z4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.pno782qzgv.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pno782qzgv" + }, + { + "Name": "integrity", + "Value": "sha256-gSJc9I/oZQRObYou+ExFrjzbKEpSeYv27Cb+NIK1pgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.k311nttbdw.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k311nttbdw" + }, + { + "Name": "integrity", + "Value": "sha256-MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.k311nttbdw.js", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1733" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k311nttbdw" + }, + { + "Name": "integrity", + "Value": "sha256-MKmu7TjEeqC+Zw8r1Wbb2yXwsAVScuE8cJ1hjQFyip0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.k311nttbdw.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k311nttbdw" + }, + { + "Name": "integrity", + "Value": "sha256-8DibbJnqyJIWW7i4rDqFfFkN1qTcTBsoYrwKITjB8Fk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043687200" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34801" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.90gncfcsi4.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044000528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90gncfcsi4" + }, + { + "Name": "integrity", + "Value": "sha256-yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.90gncfcsi4.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "33456" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90gncfcsi4" + }, + { + "Name": "integrity", + "Value": "sha256-yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.90gncfcsi4.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "90gncfcsi4" + }, + { + "Name": "integrity", + "Value": "sha256-azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044000528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "33456" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yZiJKUB2oBdtrZtfK88zQjKT3Dw9FxyOBhXZYv6BXKw=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-azoof5D7O4Pg3pc2bLxVGWCTk/GxFxXbmcG83gpfDis=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.wiowsacqam.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043687200" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wiowsacqam" + }, + { + "Name": "integrity", + "Value": "sha256-2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.wiowsacqam.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34801" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wiowsacqam" + }, + { + "Name": "integrity", + "Value": "sha256-2HeXt21etcDvCFSFhroV3RA8ujcQ3QHeaQxUHikfbDg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid-theme.wiowsacqam.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22889" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wiowsacqam" + }, + { + "Name": "integrity", + "Value": "sha256-RG7WcXMxMJnILUglxM75KrWP5Mj3txaysLE6LcDejo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid-theme.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001455604076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2303" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000075826509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "78514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.2wmd8x6icd.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104101603" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2wmd8x6icd" + }, + { + "Name": "integrity", + "Value": "sha256-IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.2wmd8x6icd.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2wmd8x6icd" + }, + { + "Name": "integrity", + "Value": "sha256-IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.2wmd8x6icd.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2wmd8x6icd" + }, + { + "Name": "integrity", + "Value": "sha256-bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.8tng65mg8r.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001560062402" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "640" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8tng65mg8r" + }, + { + "Name": "integrity", + "Value": "sha256-dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.8tng65mg8r.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8tng65mg8r" + }, + { + "Name": "integrity", + "Value": "sha256-dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.8tng65mg8r.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "640" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8tng65mg8r" + }, + { + "Name": "integrity", + "Value": "sha256-oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001560062402" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "640" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1808" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dMnh3lfkH3TtQ+hYNxlQHjVk63NHe9ugPFmMHFIgdOk=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "640" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oVa0G9rr5fNroqldW7jGjreXLdFLq8qgxzoKiH7YwG8=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104101603" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "37218" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IsFwzLQw26J9uZWVk5DE4NKgJkGGvPYB1WhQ5oVsEaM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.min.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bJAMBASKpeYekJ6q7GznC0pZ3MwXvI//6sOu5zHFMIM=" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.mvepktcb3d.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001455604076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvepktcb3d" + }, + { + "Name": "integrity", + "Value": "sha256-bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.mvepktcb3d.css", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2303" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvepktcb3d" + }, + { + "Name": "integrity", + "Value": "sha256-bkDAcrblbxDRFmdModxRD6lIjEFZ12YfXr+bjucCenM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.css" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.mvepktcb3d.css.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvepktcb3d" + }, + { + "Name": "integrity", + "Value": "sha256-QoDL8yM6QJYyIM8jgRfopAUONPIjf8FELQqKHV6U4BY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.td3w432wk3.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000075826509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "td3w432wk3" + }, + { + "Name": "integrity", + "Value": "sha256-35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.td3w432wk3.js", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "td3w432wk3" + }, + { + "Name": "integrity", + "Value": "sha256-35a8oTZuviKke5yRPXC9BTrZkgoqhppXWQa6KrK2BPM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.js" + } + ] + }, + { + "Route": "adminlte/plugins/jsgrid/jsgrid.td3w432wk3.js.gz", + "AssetFile": "adminlte/plugins/jsgrid/jsgrid.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13187" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "td3w432wk3" + }, + { + "Name": "integrity", + "Value": "sha256-duxPwVekCHEyYCDD+aznCcht0cXOvhfzKUqnRLH98rE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jsgrid/jsgrid.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.js", + "AssetFile": "adminlte/plugins/jszip/jszip.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035590988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.js", + "AssetFile": "adminlte/plugins/jszip/jszip.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "99832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.js.gz", + "AssetFile": "adminlte/plugins/jszip/jszip.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.l09tglgp3h.js", + "AssetFile": "adminlte/plugins/jszip/jszip.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035590988" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l09tglgp3h" + }, + { + "Name": "integrity", + "Value": "sha256-G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.js" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.l09tglgp3h.js", + "AssetFile": "adminlte/plugins/jszip/jszip.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "99832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l09tglgp3h" + }, + { + "Name": "integrity", + "Value": "sha256-G2mFrYa5KYKfP6c5wpA10RbGf3wAqwvXeu9OdQFi2I4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.js" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.l09tglgp3h.js.gz", + "AssetFile": "adminlte/plugins/jszip/jszip.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l09tglgp3h" + }, + { + "Name": "integrity", + "Value": "sha256-9+xNG7WfSeuV7V8yBcG34UGbrooomo2XgViHdKUHhy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.js", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035954410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27812" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.js", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "99124" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.js.gz", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27812" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.kur62z0kyx.js", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035954410" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27812" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kur62z0kyx" + }, + { + "Name": "integrity", + "Value": "sha256-fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.kur62z0kyx.js", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "99124" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kur62z0kyx" + }, + { + "Name": "integrity", + "Value": "sha256-fIDfIpE4eUA02MAqEsBYbMQOvRXk2kdO2NK2+5wTgZ4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/jszip/jszip.min.kur62z0kyx.js.gz", + "AssetFile": "adminlte/plugins/jszip/jszip.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27812" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kur62z0kyx" + }, + { + "Name": "integrity", + "Value": "sha256-j4RQ//jshTFRHInyEiPbFKzP+jcR5r2Gn6IAOOuKhyw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/jszip/jszip.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.js", + "AssetFile": "adminlte/plugins/moment/locale/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000913242009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.js", + "AssetFile": "adminlte/plugins/moment/locale/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.sroxo46lzw.js", + "AssetFile": "adminlte/plugins/moment/locale/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000913242009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sroxo46lzw" + }, + { + "Name": "integrity", + "Value": "sha256-qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.sroxo46lzw.js", + "AssetFile": "adminlte/plugins/moment/locale/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sroxo46lzw" + }, + { + "Name": "integrity", + "Value": "sha256-qEMSrUwpoSIl1Q3vTh+lSYwBFmQiWC5oVb2KyXbMVaI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/af.sroxo46lzw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sroxo46lzw" + }, + { + "Name": "integrity", + "Value": "sha256-QhZ2yhTftINdn4FrEIYXAL7Fmh9srfVBbXpzZYsPCQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/af.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.iznlc45p9d.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000643915003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iznlc45p9d" + }, + { + "Name": "integrity", + "Value": "sha256-Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-dz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.iznlc45p9d.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iznlc45p9d" + }, + { + "Name": "integrity", + "Value": "sha256-Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-dz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.iznlc45p9d.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iznlc45p9d" + }, + { + "Name": "integrity", + "Value": "sha256-lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-dz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000643915003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Uuc1+iJShmfi0/75Nw2KD6+a0gpSf/90ESJ/8hL2tQk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-dz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-dz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1552" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lMo5paVXOOKzLmAOsJnV/H7uJ6W7+uZjHifd23OrsA0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.fqu34235u5.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001050420168" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqu34235u5" + }, + { + "Name": "integrity", + "Value": "sha256-qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-kw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.fqu34235u5.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqu34235u5" + }, + { + "Name": "integrity", + "Value": "sha256-qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-kw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.fqu34235u5.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fqu34235u5" + }, + { + "Name": "integrity", + "Value": "sha256-/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-kw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001050420168" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qQV74BVFd1DcTqEAOcbyQ9FJw6CFeb6e/tmRiPopzoQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-kw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-kw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "951" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/E84JuuNpkXBzg+X68lkZMjuVSDb78Lnrg53X9V5eyU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000623052960" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.qpotaj1zdj.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000623052960" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpotaj1zdj" + }, + { + "Name": "integrity", + "Value": "sha256-XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ly.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.qpotaj1zdj.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpotaj1zdj" + }, + { + "Name": "integrity", + "Value": "sha256-XmgKRA1hmVQ5xfxHRr3aJGoX5xFtUxeW9ItNIrASwnE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ly.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ly.qpotaj1zdj.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-ly.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qpotaj1zdj" + }, + { + "Name": "integrity", + "Value": "sha256-iEEl/86RVjXEp64PwnnHXV/8yqSyohtjdPIHO0fPxeo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ly.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.cmswgz0q06.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001036269430" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "964" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmswgz0q06" + }, + { + "Name": "integrity", + "Value": "sha256-HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ma.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.cmswgz0q06.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmswgz0q06" + }, + { + "Name": "integrity", + "Value": "sha256-HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ma.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.cmswgz0q06.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "964" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmswgz0q06" + }, + { + "Name": "integrity", + "Value": "sha256-FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-ma.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001036269430" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "964" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2579" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HKt/FJF+6evLK8t73CsSfOjv036Edj7uZUFqujYWrhU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-ma.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-ma.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "964" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FZrIOucOh4gJFYnpWjjNAOnst1hJC217869kfnlmLQE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000768639508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.v8156cz7n8.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000768639508" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8156cz7n8" + }, + { + "Name": "integrity", + "Value": "sha256-cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-sa.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.v8156cz7n8.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3877" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8156cz7n8" + }, + { + "Name": "integrity", + "Value": "sha256-cQS5eKaaV2Cz7iDCd3/9Uz3kQK5M1r4VrIzvpUAqZco=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-sa.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-sa.v8156cz7n8.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-sa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1300" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8156cz7n8" + }, + { + "Name": "integrity", + "Value": "sha256-54wXv9DENmVGX8SdAVvUyUf7Q2Ow+rOoIRn7c74gEXw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-sa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.5ydc678mba.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001052631579" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ydc678mba" + }, + { + "Name": "integrity", + "Value": "sha256-nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-tn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.5ydc678mba.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ydc678mba" + }, + { + "Name": "integrity", + "Value": "sha256-nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-tn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.5ydc678mba.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ydc678mba" + }, + { + "Name": "integrity", + "Value": "sha256-BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar-tn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001052631579" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.js", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRMS2sfs1OEgyBqoCzF6dn5Y/TrgI2obQdy1DhrlztE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar-tn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar-tn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BLZnOSPuRuTaqdxkJERnqK5n1Ns0mG2Dp5G+e+js76M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.js", + "AssetFile": "adminlte/plugins/moment/locale/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000586510264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.js", + "AssetFile": "adminlte/plugins/moment/locale/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.qkg6shscxa.js", + "AssetFile": "adminlte/plugins/moment/locale/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000586510264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkg6shscxa" + }, + { + "Name": "integrity", + "Value": "sha256-liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.qkg6shscxa.js", + "AssetFile": "adminlte/plugins/moment/locale/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkg6shscxa" + }, + { + "Name": "integrity", + "Value": "sha256-liYPjkejySj9b0CwL9vhE6j9cjHAuSPeA0/GSDeuGSk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ar.qkg6shscxa.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qkg6shscxa" + }, + { + "Name": "integrity", + "Value": "sha256-vAtDH+PHbQ2RjzqRJzyi/hFrNRzQVmf9cdVL32M5rnM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.js", + "AssetFile": "adminlte/plugins/moment/locale/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000775193798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.js", + "AssetFile": "adminlte/plugins/moment/locale/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.phmaerdnmv.js", + "AssetFile": "adminlte/plugins/moment/locale/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000775193798" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phmaerdnmv" + }, + { + "Name": "integrity", + "Value": "sha256-XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.phmaerdnmv.js", + "AssetFile": "adminlte/plugins/moment/locale/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3662" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phmaerdnmv" + }, + { + "Name": "integrity", + "Value": "sha256-XTq7tfRRckpwxN03E2j5fkVWHq0gvRr4onCwKsq/EUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/az.phmaerdnmv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "phmaerdnmv" + }, + { + "Name": "integrity", + "Value": "sha256-4ROddag2aCOmAqOcmZ7jvnV9OrZsq6QVOIzR4KreD+I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/az.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.js", + "AssetFile": "adminlte/plugins/moment/locale/be.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000546746856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.js", + "AssetFile": "adminlte/plugins/moment/locale/be.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/be.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.rdxqmy8827.js", + "AssetFile": "adminlte/plugins/moment/locale/be.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000546746856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxqmy8827" + }, + { + "Name": "integrity", + "Value": "sha256-gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/be.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.rdxqmy8827.js", + "AssetFile": "adminlte/plugins/moment/locale/be.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxqmy8827" + }, + { + "Name": "integrity", + "Value": "sha256-gbZmOVWeWxiRbvRbbKN/ekG6LFkye15zFhTjee3BA5M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/be.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/be.rdxqmy8827.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/be.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1828" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rdxqmy8827" + }, + { + "Name": "integrity", + "Value": "sha256-xZu0Tp818Hp5FB6CdWj01EZGM4PRlKpi+NFZIGDisdI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/be.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.js", + "AssetFile": "adminlte/plugins/moment/locale/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000795544948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.js", + "AssetFile": "adminlte/plugins/moment/locale/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.oxv55uheo1.js", + "AssetFile": "adminlte/plugins/moment/locale/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000795544948" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oxv55uheo1" + }, + { + "Name": "integrity", + "Value": "sha256-7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.oxv55uheo1.js", + "AssetFile": "adminlte/plugins/moment/locale/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3721" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oxv55uheo1" + }, + { + "Name": "integrity", + "Value": "sha256-7B33EDYKkbs8HUBgCYLdGCpghTOLscsc+rREK1nHGpo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bg.oxv55uheo1.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oxv55uheo1" + }, + { + "Name": "integrity", + "Value": "sha256-MtgiQYc8p4CJ8+X1HVojcIdGD85NtVoCDelAZrwG8tI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.js", + "AssetFile": "adminlte/plugins/moment/locale/bm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001133786848" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.js", + "AssetFile": "adminlte/plugins/moment/locale/bm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.z611vny62a.js", + "AssetFile": "adminlte/plugins/moment/locale/bm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001133786848" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z611vny62a" + }, + { + "Name": "integrity", + "Value": "sha256-tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bm.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.z611vny62a.js", + "AssetFile": "adminlte/plugins/moment/locale/bm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2295" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z611vny62a" + }, + { + "Name": "integrity", + "Value": "sha256-tWjQ4ihBgzuevqRAWQCUv9GFQOpD0O9inBWh184PY1A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bm.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bm.z611vny62a.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z611vny62a" + }, + { + "Name": "integrity", + "Value": "sha256-hl2ois/N5e881gL4ijfTRHBWnEX69InAYcYEiY82X6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.js", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000675675676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.js", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5296" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.yyly0yzkb2.js", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000675675676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyly0yzkb2" + }, + { + "Name": "integrity", + "Value": "sha256-upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn-bd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.yyly0yzkb2.js", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5296" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyly0yzkb2" + }, + { + "Name": "integrity", + "Value": "sha256-upshKqHTkfBPc91wH6CweKbCsHaxEfzdSZOGhiNfSg4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn-bd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn-bd.yyly0yzkb2.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bn-bd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1479" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyly0yzkb2" + }, + { + "Name": "integrity", + "Value": "sha256-AbgGRBmrVgHeiK1bcsTR3Gi3ikgnRJOdXu6c/99WRTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn-bd.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.js", + "AssetFile": "adminlte/plugins/moment/locale/bn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000709219858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.js", + "AssetFile": "adminlte/plugins/moment/locale/bn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.x0vqgjaw78.js", + "AssetFile": "adminlte/plugins/moment/locale/bn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000709219858" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x0vqgjaw78" + }, + { + "Name": "integrity", + "Value": "sha256-kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.x0vqgjaw78.js", + "AssetFile": "adminlte/plugins/moment/locale/bn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4799" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x0vqgjaw78" + }, + { + "Name": "integrity", + "Value": "sha256-kfsMdefnlzksc557OoAdBuGlbUsXhNyb2/Bk+e6BvyE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bn.x0vqgjaw78.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1409" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x0vqgjaw78" + }, + { + "Name": "integrity", + "Value": "sha256-NoD7pzFGnjdxofg+1Y1CwNyjdd0wus+y9qQXTjLRu4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.js", + "AssetFile": "adminlte/plugins/moment/locale/bo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000655307995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.js", + "AssetFile": "adminlte/plugins/moment/locale/bo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.l7nnjezbtn.js", + "AssetFile": "adminlte/plugins/moment/locale/bo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000655307995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l7nnjezbtn" + }, + { + "Name": "integrity", + "Value": "sha256-QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.l7nnjezbtn.js", + "AssetFile": "adminlte/plugins/moment/locale/bo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5304" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l7nnjezbtn" + }, + { + "Name": "integrity", + "Value": "sha256-QbBhdDUK7uEcoAS0TWZGG/pqLCgrt0Ou33Z5wz6vDL4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bo.l7nnjezbtn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l7nnjezbtn" + }, + { + "Name": "integrity", + "Value": "sha256-Qm2PWYXcZLmI7nY7E0iEREDxcBxycbvUrekfOKKP13U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.jqqwrltbnk.js", + "AssetFile": "adminlte/plugins/moment/locale/br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000598802395" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqqwrltbnk" + }, + { + "Name": "integrity", + "Value": "sha256-pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/br.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.jqqwrltbnk.js", + "AssetFile": "adminlte/plugins/moment/locale/br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqqwrltbnk" + }, + { + "Name": "integrity", + "Value": "sha256-pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/br.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.jqqwrltbnk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqqwrltbnk" + }, + { + "Name": "integrity", + "Value": "sha256-01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/br.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.js", + "AssetFile": "adminlte/plugins/moment/locale/br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000598802395" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.js", + "AssetFile": "adminlte/plugins/moment/locale/br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5660" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pbEsj1zxZ7rW13MQITCTVFPqNo2u0/W/G5caRseSPQQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/br.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-01Kx2GxaZTUI2b3oWKcPhfWbBNrSup0HmUK1tDekCkE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.4ca921yw8k.js", + "AssetFile": "adminlte/plugins/moment/locale/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000761614623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1312" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ca921yw8k" + }, + { + "Name": "integrity", + "Value": "sha256-bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.4ca921yw8k.js", + "AssetFile": "adminlte/plugins/moment/locale/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ca921yw8k" + }, + { + "Name": "integrity", + "Value": "sha256-bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.4ca921yw8k.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1312" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4ca921yw8k" + }, + { + "Name": "integrity", + "Value": "sha256-jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/bs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.js", + "AssetFile": "adminlte/plugins/moment/locale/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000761614623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1312" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.js", + "AssetFile": "adminlte/plugins/moment/locale/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bF3bLU5EZD7H8DP+QJmbv8MspKLow4fEgdsmpQ0/fR0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/bs.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1312" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jokrpTajUNL/6ef3CGlCuICO2AQmUzL112hehaAzeNI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.elys5kam5t.js", + "AssetFile": "adminlte/plugins/moment/locale/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000821692687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elys5kam5t" + }, + { + "Name": "integrity", + "Value": "sha256-3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.elys5kam5t.js", + "AssetFile": "adminlte/plugins/moment/locale/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elys5kam5t" + }, + { + "Name": "integrity", + "Value": "sha256-3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.elys5kam5t.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elys5kam5t" + }, + { + "Name": "integrity", + "Value": "sha256-OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.js", + "AssetFile": "adminlte/plugins/moment/locale/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000821692687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.js", + "AssetFile": "adminlte/plugins/moment/locale/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3795" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3kw9xS+2Vl3EGTT/uy4OfzfkTGaXLnklfucTM0pFgxc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ca.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OsfiAQKjA3PRIfrweyFSs691hc2DxFsgE2mvOhtyTo4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.js", + "AssetFile": "adminlte/plugins/moment/locale/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000540832883" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1848" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.js", + "AssetFile": "adminlte/plugins/moment/locale/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1848" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.p7abm3zrn6.js", + "AssetFile": "adminlte/plugins/moment/locale/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000540832883" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1848" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7abm3zrn6" + }, + { + "Name": "integrity", + "Value": "sha256-dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.p7abm3zrn6.js", + "AssetFile": "adminlte/plugins/moment/locale/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7669" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7abm3zrn6" + }, + { + "Name": "integrity", + "Value": "sha256-dbqabuR3YlRsTjWPuYtxp3xHxieLmWLPgHZTpQhxPqM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cs.p7abm3zrn6.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1848" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p7abm3zrn6" + }, + { + "Name": "integrity", + "Value": "sha256-a4VGzvqXdC/RmN1Q9bEFKzqf9ZLc8kBTJJjL1LlsGXA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.js", + "AssetFile": "adminlte/plugins/moment/locale/cv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.js", + "AssetFile": "adminlte/plugins/moment/locale/cv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2966" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.pthsutqat7.js", + "AssetFile": "adminlte/plugins/moment/locale/cv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pthsutqat7" + }, + { + "Name": "integrity", + "Value": "sha256-PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.pthsutqat7.js", + "AssetFile": "adminlte/plugins/moment/locale/cv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2966" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pthsutqat7" + }, + { + "Name": "integrity", + "Value": "sha256-PdvYhW+ThmIlnXrAy9keTMaCaVKdghAyS7pTh8qblzE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cv.pthsutqat7.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pthsutqat7" + }, + { + "Name": "integrity", + "Value": "sha256-eV2oeq1emKhbwamwbKyiaM8OGCmymRcnNss0KGn+XCs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.bwwvcu9m2t.js", + "AssetFile": "adminlte/plugins/moment/locale/cy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000819000819" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bwwvcu9m2t" + }, + { + "Name": "integrity", + "Value": "sha256-S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cy.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.bwwvcu9m2t.js", + "AssetFile": "adminlte/plugins/moment/locale/cy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bwwvcu9m2t" + }, + { + "Name": "integrity", + "Value": "sha256-S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cy.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.bwwvcu9m2t.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bwwvcu9m2t" + }, + { + "Name": "integrity", + "Value": "sha256-WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/cy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.js", + "AssetFile": "adminlte/plugins/moment/locale/cy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000819000819" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.js", + "AssetFile": "adminlte/plugins/moment/locale/cy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3630" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S4ywfTi/sDgbu/0NsUPI3zBYqKucM829DDT84fFjsdY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/cy.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/cy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WuAOD5TFKpVDu8/45L1RSRuBEm0baa3htndJMfXAcDI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.js", + "AssetFile": "adminlte/plugins/moment/locale/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001131221719" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "883" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.js", + "AssetFile": "adminlte/plugins/moment/locale/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2225" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "883" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.nyjljb9857.js", + "AssetFile": "adminlte/plugins/moment/locale/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001131221719" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "883" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyjljb9857" + }, + { + "Name": "integrity", + "Value": "sha256-sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.nyjljb9857.js", + "AssetFile": "adminlte/plugins/moment/locale/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2225" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyjljb9857" + }, + { + "Name": "integrity", + "Value": "sha256-sRi6iGRc/qrwBTFZSMdigCRf7bh/rb2TSml9O1aTU/4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/da.nyjljb9857.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "883" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nyjljb9857" + }, + { + "Name": "integrity", + "Value": "sha256-G/SDRt98grOpYQ8jDmY+jLIriLW1iIKc5bVobjDdPbY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/da.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.8py1pqao09.js", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000848176421" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8py1pqao09" + }, + { + "Name": "integrity", + "Value": "sha256-FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-at.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.8py1pqao09.js", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8py1pqao09" + }, + { + "Name": "integrity", + "Value": "sha256-FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-at.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.8py1pqao09.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8py1pqao09" + }, + { + "Name": "integrity", + "Value": "sha256-HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-at.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.js", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000848176421" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.js", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3339" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FJnoMGlj6Iuiv024nlI6aT1YhvxfUl9Z5WneKBo8zzQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-at.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de-at.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HJ9uknsEQuYz5Izg0rn6lS1n6+UcY+AvGLjcyL8ZXgw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.fkx4xf97ja.js", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000905797101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkx4xf97ja" + }, + { + "Name": "integrity", + "Value": "sha256-7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.fkx4xf97ja.js", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkx4xf97ja" + }, + { + "Name": "integrity", + "Value": "sha256-7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.fkx4xf97ja.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkx4xf97ja" + }, + { + "Name": "integrity", + "Value": "sha256-eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de-ch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000905797101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7y+XxU4rr0VpU3Q0Ya+i3b739Tro+I/79mjKBwrV8tc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de-ch.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eMoLCJl5X8IVlGWd0K2TvBtYDoe7mhG8SOFkh0eEmks=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.js", + "AssetFile": "adminlte/plugins/moment/locale/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000873362445" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.js", + "AssetFile": "adminlte/plugins/moment/locale/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3261" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.s8hndkt2qg.js", + "AssetFile": "adminlte/plugins/moment/locale/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000873362445" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8hndkt2qg" + }, + { + "Name": "integrity", + "Value": "sha256-9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.s8hndkt2qg.js", + "AssetFile": "adminlte/plugins/moment/locale/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3261" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8hndkt2qg" + }, + { + "Name": "integrity", + "Value": "sha256-9PvxvYHZ5/DW11IclKZ+1OPipZhdAM4/G1iLdc8CZTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/de.s8hndkt2qg.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s8hndkt2qg" + }, + { + "Name": "integrity", + "Value": "sha256-vrWn88Kyphw8GW+8PSaa/vTIid2sQQnKfXTu6F630nA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.c4nxqrxz2r.js", + "AssetFile": "adminlte/plugins/moment/locale/dv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000870322019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c4nxqrxz2r" + }, + { + "Name": "integrity", + "Value": "sha256-tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/dv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.c4nxqrxz2r.js", + "AssetFile": "adminlte/plugins/moment/locale/dv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3241" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c4nxqrxz2r" + }, + { + "Name": "integrity", + "Value": "sha256-tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/dv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.c4nxqrxz2r.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/dv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c4nxqrxz2r" + }, + { + "Name": "integrity", + "Value": "sha256-cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/dv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.js", + "AssetFile": "adminlte/plugins/moment/locale/dv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000870322019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.js", + "AssetFile": "adminlte/plugins/moment/locale/dv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3241" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tJZsRicJMeeMncXfZ0ZkEsyt5AC0FWuoRjlYGsK7lxo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/dv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/dv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cIj29bMMRckcYadlFPwHVf8+Nii4vIJVATJ13inx1Nw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.1qmm1ghdqm.js", + "AssetFile": "adminlte/plugins/moment/locale/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000602409639" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qmm1ghdqm" + }, + { + "Name": "integrity", + "Value": "sha256-d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.1qmm1ghdqm.js", + "AssetFile": "adminlte/plugins/moment/locale/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qmm1ghdqm" + }, + { + "Name": "integrity", + "Value": "sha256-d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.1qmm1ghdqm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1qmm1ghdqm" + }, + { + "Name": "integrity", + "Value": "sha256-9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/el.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.js", + "AssetFile": "adminlte/plugins/moment/locale/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000602409639" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.js", + "AssetFile": "adminlte/plugins/moment/locale/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4692" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d7IwOVbYRSPa9Dj55gbZgUwHMOs0BopPVRKEYyzMhF0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/el.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9/Jo5O+lBezMQIDpJNOqglYSc1yJinWtPF+SkW61x4g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.7pxp5mvgjq.js", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000993048659" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7pxp5mvgjq" + }, + { + "Name": "integrity", + "Value": "sha256-JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-SG.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.7pxp5mvgjq.js", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7pxp5mvgjq" + }, + { + "Name": "integrity", + "Value": "sha256-JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-SG.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.7pxp5mvgjq.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7pxp5mvgjq" + }, + { + "Name": "integrity", + "Value": "sha256-fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-SG.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.js", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000993048659" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.js", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2722" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JVyxUVtYSQetXGlsOimkQnZVE/wt8Cu1mdw4/ucWCTE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-SG.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-SG.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fp/1MfmpBWrxE4+bCwY21O5DHfbaxX05HQTzxZI0ZGc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.js", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001007049345" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.js", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.lg4t5lpli6.js", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001007049345" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lg4t5lpli6" + }, + { + "Name": "integrity", + "Value": "sha256-K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-au.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.lg4t5lpli6.js", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lg4t5lpli6" + }, + { + "Name": "integrity", + "Value": "sha256-K9t9w41PtTmYnSDnm8xhycN5C9EJhVJ+M0VkPvW2CpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-au.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-au.lg4t5lpli6.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-au.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lg4t5lpli6" + }, + { + "Name": "integrity", + "Value": "sha256-L8rHWgvE4A4u1zj4UFINsVj9zbu5C6lc/FdcAUulAss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-au.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001077586207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.wb83bsefl9.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001077586207" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wb83bsefl9" + }, + { + "Name": "integrity", + "Value": "sha256-FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.wb83bsefl9.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wb83bsefl9" + }, + { + "Name": "integrity", + "Value": "sha256-FDhYDeND3Hq56ktGnpmDMkT7z2dpjDM8ReGHlQwbOHE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ca.wb83bsefl9.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wb83bsefl9" + }, + { + "Name": "integrity", + "Value": "sha256-tQaknGdlR/xNhdNm7fJwaH6VPuzoXKvN76XbE/BgHgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.jlfc66ru0f.js", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001001001001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlfc66ru0f" + }, + { + "Name": "integrity", + "Value": "sha256-96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-gb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.jlfc66ru0f.js", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2710" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlfc66ru0f" + }, + { + "Name": "integrity", + "Value": "sha256-96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-gb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.jlfc66ru0f.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jlfc66ru0f" + }, + { + "Name": "integrity", + "Value": "sha256-d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-gb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.js", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001001001001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.js", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2710" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96dAkmyKvu8Thl5qen0XjgijQLsxeY+n5SvGIOFYojs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-gb.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-gb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/L2QAM4EmgB6EXa0iauPLJnK5hgURNw1u/8ZdYeb3A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.2qqm9pdpky.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001008064516" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "991" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qqm9pdpky" + }, + { + "Name": "integrity", + "Value": "sha256-NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ie.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.2qqm9pdpky.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qqm9pdpky" + }, + { + "Name": "integrity", + "Value": "sha256-NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ie.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.2qqm9pdpky.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "991" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qqm9pdpky" + }, + { + "Name": "integrity", + "Value": "sha256-UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-ie.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001008064516" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "991" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.js", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NhKL2zwiDs++6kB7OKl4MusST3IrW7boHcnXrWhXRbU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-ie.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-ie.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "991" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UCCWzbVINH09OoXa++DJ6q8a8W39sgoAaMVeB+/51g4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.avutla8y34.js", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001084598698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avutla8y34" + }, + { + "Name": "integrity", + "Value": "sha256-ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-il.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.avutla8y34.js", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avutla8y34" + }, + { + "Name": "integrity", + "Value": "sha256-ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-il.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.avutla8y34.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "avutla8y34" + }, + { + "Name": "integrity", + "Value": "sha256-Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-il.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.js", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001084598698" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.js", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2526" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ht6JpY58D2Vly0Okb3d1EI3BwhGl05gg9NhxP8K2Osg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-il.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-il.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "921" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ji+fFhr7Fu6mRNJM+6TE0ODHhENsIpXfgNRGvSeCXog=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.fz5uhjiksz.js", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001005025126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz5uhjiksz" + }, + { + "Name": "integrity", + "Value": "sha256-y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.fz5uhjiksz.js", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz5uhjiksz" + }, + { + "Name": "integrity", + "Value": "sha256-y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.fz5uhjiksz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fz5uhjiksz" + }, + { + "Name": "integrity", + "Value": "sha256-9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-in.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.js", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001005025126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.js", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y3ZXe+QgyGliSzFJwuB+Gp3KiSClcdAZbsHQHBwWyqk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-in.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "994" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9llphhEQNWWkNEE3MyM0KdtyEmHv0/JnXb++n6zA0bI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.50vx1ymj02.js", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001001001001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50vx1ymj02" + }, + { + "Name": "integrity", + "Value": "sha256-NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-nz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.50vx1ymj02.js", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2713" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50vx1ymj02" + }, + { + "Name": "integrity", + "Value": "sha256-NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-nz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.50vx1ymj02.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "50vx1ymj02" + }, + { + "Name": "integrity", + "Value": "sha256-MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/en-nz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.js", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001001001001" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.js", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2713" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NaQNNQ6SnWloO94WHHZMkvO29TGAtDQa3ThK+WAzqKo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/en-nz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/en-nz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MlL8oen5sjgvdZ5N6MXd/eIonqs7ZtHNmj7xb/UE5dw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.js", + "AssetFile": "adminlte/plugins/moment/locale/eo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000870322019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.js", + "AssetFile": "adminlte/plugins/moment/locale/eo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/eo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.lnrtssb74j.js", + "AssetFile": "adminlte/plugins/moment/locale/eo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000870322019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lnrtssb74j" + }, + { + "Name": "integrity", + "Value": "sha256-QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.lnrtssb74j.js", + "AssetFile": "adminlte/plugins/moment/locale/eo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lnrtssb74j" + }, + { + "Name": "integrity", + "Value": "sha256-QS0W3NAVsHgFk4E0D0HQzDKAawViogXxvPZXEWHgRKk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eo.lnrtssb74j.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/eo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lnrtssb74j" + }, + { + "Name": "integrity", + "Value": "sha256-3AddsVWw+5McxSFvjZOyvd3SaoIvzsx9KN+zukhU230=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.0maedcc5oz.js", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000778816199" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0maedcc5oz" + }, + { + "Name": "integrity", + "Value": "sha256-OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-do.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.0maedcc5oz.js", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0maedcc5oz" + }, + { + "Name": "integrity", + "Value": "sha256-OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-do.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.0maedcc5oz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0maedcc5oz" + }, + { + "Name": "integrity", + "Value": "sha256-MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-do.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.js", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000778816199" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.js", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4256" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OApXiniw/JUXi7BvuZBb3TdLDAFymJ1xwZEm761r5hQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-do.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-do.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MMdG9WnleyVAszsGmJzl5YbFBJdVBRrofUAwO/Z0EsI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.js", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000751879699" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.js", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.vgf4c8eerc.js", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000751879699" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vgf4c8eerc" + }, + { + "Name": "integrity", + "Value": "sha256-scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-mx.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.vgf4c8eerc.js", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vgf4c8eerc" + }, + { + "Name": "integrity", + "Value": "sha256-scxONucAAzqnxmNfV5NExG65RoG1CP6LmYlPNHCpkys=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-mx.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-mx.vgf4c8eerc.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-mx.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1329" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vgf4c8eerc" + }, + { + "Name": "integrity", + "Value": "sha256-jx8KIPgkMrcVg9EOLo6MDAi7HKlnq4qzaF0JyHLPQVI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-mx.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.imnuotmftn.js", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000754147813" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imnuotmftn" + }, + { + "Name": "integrity", + "Value": "sha256-5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-us.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.imnuotmftn.js", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imnuotmftn" + }, + { + "Name": "integrity", + "Value": "sha256-5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-us.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.imnuotmftn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "imnuotmftn" + }, + { + "Name": "integrity", + "Value": "sha256-CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es-us.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.js", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000754147813" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.js", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5mAEQ3zAODnbYPuy40iu0Yx+KYCei63DFZGWX+RxySc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es-us.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es-us.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CxGgWBT7M/TOWhRZS6wh/H8nMy5369G/AYQkVLM6kKA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.9hx95zn97l.js", + "AssetFile": "adminlte/plugins/moment/locale/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000758150114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hx95zn97l" + }, + { + "Name": "integrity", + "Value": "sha256-vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.9hx95zn97l.js", + "AssetFile": "adminlte/plugins/moment/locale/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4315" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hx95zn97l" + }, + { + "Name": "integrity", + "Value": "sha256-vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.9hx95zn97l.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hx95zn97l" + }, + { + "Name": "integrity", + "Value": "sha256-Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/es.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.js", + "AssetFile": "adminlte/plugins/moment/locale/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000758150114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.js", + "AssetFile": "adminlte/plugins/moment/locale/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4315" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vVLxxOtwRBtig7GXrJYouxqEchqz/UWj9bttQr92Mqc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/es.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Vlz00g9Ha+44UTI85pWhWrLx3L9Kdc2ZhL+SbTM4TL8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.b00b57vkoe.js", + "AssetFile": "adminlte/plugins/moment/locale/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000882612533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b00b57vkoe" + }, + { + "Name": "integrity", + "Value": "sha256-NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.b00b57vkoe.js", + "AssetFile": "adminlte/plugins/moment/locale/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b00b57vkoe" + }, + { + "Name": "integrity", + "Value": "sha256-NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.b00b57vkoe.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b00b57vkoe" + }, + { + "Name": "integrity", + "Value": "sha256-+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/et.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.js", + "AssetFile": "adminlte/plugins/moment/locale/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000882612533" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.js", + "AssetFile": "adminlte/plugins/moment/locale/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3334" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NZoN4uN1aobBXarM88zQxZUuIXEoYMUHpQ6tceBRr/8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/et.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+d/XYnFLkWfKKIhsqdoxQx1noAv/iPMiNDdByifMI54=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.js", + "AssetFile": "adminlte/plugins/moment/locale/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001044932079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.js", + "AssetFile": "adminlte/plugins/moment/locale/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.qlkus2h880.js", + "AssetFile": "adminlte/plugins/moment/locale/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001044932079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlkus2h880" + }, + { + "Name": "integrity", + "Value": "sha256-zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.qlkus2h880.js", + "AssetFile": "adminlte/plugins/moment/locale/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlkus2h880" + }, + { + "Name": "integrity", + "Value": "sha256-zrdCV+RhbMwIVhILIYHSyZyHOvX2Z9EOMndEJkll+dA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/eu.qlkus2h880.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qlkus2h880" + }, + { + "Name": "integrity", + "Value": "sha256-ZUjPte2OIDzVRWuSQZl09k1uyr5f8anf9LcqaKApTHc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/eu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.js", + "AssetFile": "adminlte/plugins/moment/locale/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000765110941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1306" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.js", + "AssetFile": "adminlte/plugins/moment/locale/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1306" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.z46lj65flu.js", + "AssetFile": "adminlte/plugins/moment/locale/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000765110941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1306" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z46lj65flu" + }, + { + "Name": "integrity", + "Value": "sha256-rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.z46lj65flu.js", + "AssetFile": "adminlte/plugins/moment/locale/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4059" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z46lj65flu" + }, + { + "Name": "integrity", + "Value": "sha256-rRJc5azG55OkSIMipMY8SYdIIaOpKXOYy2lXhlXLWA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fa.z46lj65flu.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1306" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z46lj65flu" + }, + { + "Name": "integrity", + "Value": "sha256-+9Hn8ApP0BSg7chVHIyGzfpr8hXZJcZjjQvhGZn0XD4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.acyzjfihoh.js", + "AssetFile": "adminlte/plugins/moment/locale/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000770416025" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1297" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acyzjfihoh" + }, + { + "Name": "integrity", + "Value": "sha256-ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.acyzjfihoh.js", + "AssetFile": "adminlte/plugins/moment/locale/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acyzjfihoh" + }, + { + "Name": "integrity", + "Value": "sha256-ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.acyzjfihoh.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1297" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "acyzjfihoh" + }, + { + "Name": "integrity", + "Value": "sha256-akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.js", + "AssetFile": "adminlte/plugins/moment/locale/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000770416025" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1297" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.js", + "AssetFile": "adminlte/plugins/moment/locale/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4516" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZniyAjRvrRTu+uw1ubMA2ootk5Hlr4p5tpkZAeVgHx0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fi.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1297" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-akF36Nft8nspEi1klGEfA2xPx4G4KRmx596DaC64jgA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.js", + "AssetFile": "adminlte/plugins/moment/locale/fil.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001068376068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.js", + "AssetFile": "adminlte/plugins/moment/locale/fil.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fil.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.rw170kchsx.js", + "AssetFile": "adminlte/plugins/moment/locale/fil.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001068376068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rw170kchsx" + }, + { + "Name": "integrity", + "Value": "sha256-lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fil.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.rw170kchsx.js", + "AssetFile": "adminlte/plugins/moment/locale/fil.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rw170kchsx" + }, + { + "Name": "integrity", + "Value": "sha256-lSoPrmAeOyreADmOqgRPL7/zW+qwB1Z1JZho8HB1TqI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fil.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fil.rw170kchsx.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fil.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "935" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rw170kchsx" + }, + { + "Name": "integrity", + "Value": "sha256-3Jt5kmGji46BXTyiBLEkNdMKrqeEBDxqCvvS/rl6f/Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fil.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.js", + "AssetFile": "adminlte/plugins/moment/locale/fo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001063829787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.js", + "AssetFile": "adminlte/plugins/moment/locale/fo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.xxcfh7wi91.js", + "AssetFile": "adminlte/plugins/moment/locale/fo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001063829787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxcfh7wi91" + }, + { + "Name": "integrity", + "Value": "sha256-u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.xxcfh7wi91.js", + "AssetFile": "adminlte/plugins/moment/locale/fo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxcfh7wi91" + }, + { + "Name": "integrity", + "Value": "sha256-u2NHp3OUR82fJE00agXG9HwbSAQHv/mibamWB/jJg2A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fo.xxcfh7wi91.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xxcfh7wi91" + }, + { + "Name": "integrity", + "Value": "sha256-NiZdLDjmEaWmVCtpbjX5VbT2YUhdklCaleaFGzMEqjA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.fljpml5ndc.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000985221675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fljpml5ndc" + }, + { + "Name": "integrity", + "Value": "sha256-c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.fljpml5ndc.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fljpml5ndc" + }, + { + "Name": "integrity", + "Value": "sha256-c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.fljpml5ndc.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fljpml5ndc" + }, + { + "Name": "integrity", + "Value": "sha256-Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000985221675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2764" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c4kl9ZK0IwZTpSwTmmjqOgrBRdXZrGYCEjscih88bKA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ca.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr-ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lc7kSmrhzBOcREFec/PcCqH7lGm9mp2hLP7eST/Duw8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.idh46dj4tw.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000921658986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idh46dj4tw" + }, + { + "Name": "integrity", + "Value": "sha256-CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.idh46dj4tw.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idh46dj4tw" + }, + { + "Name": "integrity", + "Value": "sha256-CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.idh46dj4tw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idh46dj4tw" + }, + { + "Name": "integrity", + "Value": "sha256-EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr-ch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000921658986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2943" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CoU0kiB336u6hWD+aVld8Sv3vlPIzWk81UF/B6FvYi0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr-ch.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EjpfR3FwLedTkLGU+UpZo4EAUNSGwwEg0HZOHG4d7hM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.js", + "AssetFile": "adminlte/plugins/moment/locale/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000732064422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.js", + "AssetFile": "adminlte/plugins/moment/locale/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4270" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.k95z8apj4s.js", + "AssetFile": "adminlte/plugins/moment/locale/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000732064422" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k95z8apj4s" + }, + { + "Name": "integrity", + "Value": "sha256-mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.k95z8apj4s.js", + "AssetFile": "adminlte/plugins/moment/locale/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4270" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k95z8apj4s" + }, + { + "Name": "integrity", + "Value": "sha256-mDrUhj/TKYCVOR1wy1QvS9d6Tyjre0+2Fbo04iIKhbA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fr.k95z8apj4s.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1365" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k95z8apj4s" + }, + { + "Name": "integrity", + "Value": "sha256-xkWF6hAg70wj23TbM7o/rMnGnkcb2GXaRiabC5hFQCc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.js", + "AssetFile": "adminlte/plugins/moment/locale/fy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.js", + "AssetFile": "adminlte/plugins/moment/locale/fy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.wrzo98eekm.js", + "AssetFile": "adminlte/plugins/moment/locale/fy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wrzo98eekm" + }, + { + "Name": "integrity", + "Value": "sha256-HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fy.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.wrzo98eekm.js", + "AssetFile": "adminlte/plugins/moment/locale/fy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2999" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wrzo98eekm" + }, + { + "Name": "integrity", + "Value": "sha256-HPRzgYuPqQ41Lgfx1mc+qfuTbqMxmvmI1g40ewDKS3Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fy.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/fy.wrzo98eekm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/fy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wrzo98eekm" + }, + { + "Name": "integrity", + "Value": "sha256-QMaHoH3Nox8Bv8zYCKrmR4ej9Qu/9quKN2xwMJnY4yg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/fy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.01mr3fv2ok.js", + "AssetFile": "adminlte/plugins/moment/locale/ga.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000923361034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "01mr3fv2ok" + }, + { + "Name": "integrity", + "Value": "sha256-vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ga.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.01mr3fv2ok.js", + "AssetFile": "adminlte/plugins/moment/locale/ga.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "01mr3fv2ok" + }, + { + "Name": "integrity", + "Value": "sha256-vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ga.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.01mr3fv2ok.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ga.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "01mr3fv2ok" + }, + { + "Name": "integrity", + "Value": "sha256-bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ga.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.js", + "AssetFile": "adminlte/plugins/moment/locale/ga.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000923361034" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.js", + "AssetFile": "adminlte/plugins/moment/locale/ga.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3162" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vGhogNFE7AWWEzP8zFPciuL1ZwndSypMLxoN2wEPdxI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ga.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ga.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bsAfIFfRxe7V3flzo3mH4URDxIPUnJtuGZv4/qkTZO8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.js", + "AssetFile": "adminlte/plugins/moment/locale/gd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000913242009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.js", + "AssetFile": "adminlte/plugins/moment/locale/gd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3182" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.zd1cxn252l.js", + "AssetFile": "adminlte/plugins/moment/locale/gd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000913242009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zd1cxn252l" + }, + { + "Name": "integrity", + "Value": "sha256-B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.zd1cxn252l.js", + "AssetFile": "adminlte/plugins/moment/locale/gd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3182" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zd1cxn252l" + }, + { + "Name": "integrity", + "Value": "sha256-B28GVpdYnhs0WsQzgI/o4jx1MVeA9sp3IbCpmWTFJ9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gd.zd1cxn252l.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zd1cxn252l" + }, + { + "Name": "integrity", + "Value": "sha256-R+f6dEZWbKremr8s3Jxn/Bwrn7whxBOkqAf2rCaAwG0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gd.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.js", + "AssetFile": "adminlte/plugins/moment/locale/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000965250965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.js", + "AssetFile": "adminlte/plugins/moment/locale/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.n3zq3q2e9j.js", + "AssetFile": "adminlte/plugins/moment/locale/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000965250965" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n3zq3q2e9j" + }, + { + "Name": "integrity", + "Value": "sha256-M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.n3zq3q2e9j.js", + "AssetFile": "adminlte/plugins/moment/locale/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3032" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n3zq3q2e9j" + }, + { + "Name": "integrity", + "Value": "sha256-M1+/TZoOsosGh7mh6VUTCrxZBuW4s6o49cvvLm8fj9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gl.n3zq3q2e9j.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n3zq3q2e9j" + }, + { + "Name": "integrity", + "Value": "sha256-UioEIIlh+xJbBEyCvHwyPxoVn/Dr4dUu57kjb4pNNsc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.b2toxeyv5p.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000577367206" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2toxeyv5p" + }, + { + "Name": "integrity", + "Value": "sha256-3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-deva.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.b2toxeyv5p.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2toxeyv5p" + }, + { + "Name": "integrity", + "Value": "sha256-3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-deva.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.b2toxeyv5p.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b2toxeyv5p" + }, + { + "Name": "integrity", + "Value": "sha256-GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-deva.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000577367206" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6427" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3b2YFMydwKviCP/anOvDKb3ODaiLlGEBfDXIa2jAai0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-deva.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gom-deva.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1731" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GJSKQDno7wh484NgT8xXBHISd0rGcyIYMCILmB0d3tA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000664893617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.p3rugy5fxn.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000664893617" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p3rugy5fxn" + }, + { + "Name": "integrity", + "Value": "sha256-SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.p3rugy5fxn.js", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p3rugy5fxn" + }, + { + "Name": "integrity", + "Value": "sha256-SzMI5+lXug/ddq9ppEsk/CgZjQLCzkUA3cqEOJ/lyPk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gom-latn.p3rugy5fxn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gom-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1503" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p3rugy5fxn" + }, + { + "Name": "integrity", + "Value": "sha256-w4YSi0N//C3VymbfJP6ZDTJ9KhBQJQT5A6f2G4Q9zFs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gom-latn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.js", + "AssetFile": "adminlte/plugins/moment/locale/gu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000644745326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.js", + "AssetFile": "adminlte/plugins/moment/locale/gu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.ya6ncn057i.js", + "AssetFile": "adminlte/plugins/moment/locale/gu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000644745326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ya6ncn057i" + }, + { + "Name": "integrity", + "Value": "sha256-qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.ya6ncn057i.js", + "AssetFile": "adminlte/plugins/moment/locale/gu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5048" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ya6ncn057i" + }, + { + "Name": "integrity", + "Value": "sha256-qgfvJGkyQudUfTcvvKCclCrbmFBhe4vAq57RxFj54z4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/gu.ya6ncn057i.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/gu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1550" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ya6ncn057i" + }, + { + "Name": "integrity", + "Value": "sha256-B2jlTlLj4wL6bDWoRnMhmh7xbsrggP92IQTnuOlSfFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/gu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.e2nbyghv58.js", + "AssetFile": "adminlte/plugins/moment/locale/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000825763832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2nbyghv58" + }, + { + "Name": "integrity", + "Value": "sha256-hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.e2nbyghv58.js", + "AssetFile": "adminlte/plugins/moment/locale/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4002" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2nbyghv58" + }, + { + "Name": "integrity", + "Value": "sha256-hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.e2nbyghv58.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e2nbyghv58" + }, + { + "Name": "integrity", + "Value": "sha256-xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/he.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.js", + "AssetFile": "adminlte/plugins/moment/locale/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000825763832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.js", + "AssetFile": "adminlte/plugins/moment/locale/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4002" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hrvIIAaIYWgkQMRfJMvHbCPohCkT1DtdbFdU8uF8dBg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/he.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1210" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xa1KLHmNknJZkDXXJokIQCsRQZ5m49oxQyu6Pa8dp/0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.js", + "AssetFile": "adminlte/plugins/moment/locale/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000544662309" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.js", + "AssetFile": "adminlte/plugins/moment/locale/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.uzfb8lbzcw.js", + "AssetFile": "adminlte/plugins/moment/locale/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000544662309" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uzfb8lbzcw" + }, + { + "Name": "integrity", + "Value": "sha256-Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.uzfb8lbzcw.js", + "AssetFile": "adminlte/plugins/moment/locale/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uzfb8lbzcw" + }, + { + "Name": "integrity", + "Value": "sha256-Ru6mhO2ziDKkl26Os4tMLQ1oVaH2x9r6K49vUx0uU08=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hi.uzfb8lbzcw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uzfb8lbzcw" + }, + { + "Name": "integrity", + "Value": "sha256-aF6r+Dv7lD/LPVDEvlB/GrvuBPiNowf27+NcKH0m+jA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.js", + "AssetFile": "adminlte/plugins/moment/locale/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000735835173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.js", + "AssetFile": "adminlte/plugins/moment/locale/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.t4y62zoawb.js", + "AssetFile": "adminlte/plugins/moment/locale/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000735835173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4y62zoawb" + }, + { + "Name": "integrity", + "Value": "sha256-s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.t4y62zoawb.js", + "AssetFile": "adminlte/plugins/moment/locale/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4y62zoawb" + }, + { + "Name": "integrity", + "Value": "sha256-s18/XeauOK6Kxa94WQVcgZgc+pv14YLaxcv5Iy1OjCk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hr.t4y62zoawb.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1358" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t4y62zoawb" + }, + { + "Name": "integrity", + "Value": "sha256-s6r6LEdALEWsqafGOmcD6jDde9hb7Yu2KHYVV3tA8Mk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.js", + "AssetFile": "adminlte/plugins/moment/locale/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000716332378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.js", + "AssetFile": "adminlte/plugins/moment/locale/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.vjwi45m119.js", + "AssetFile": "adminlte/plugins/moment/locale/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000716332378" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjwi45m119" + }, + { + "Name": "integrity", + "Value": "sha256-tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.vjwi45m119.js", + "AssetFile": "adminlte/plugins/moment/locale/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4714" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjwi45m119" + }, + { + "Name": "integrity", + "Value": "sha256-tTK4XqKZl6m5ZbWmbPt5kl0TmqX93eCjsMRnkSt8Ptc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hu.vjwi45m119.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vjwi45m119" + }, + { + "Name": "integrity", + "Value": "sha256-Jwf5NmwIK/imL+fWD8eEtZpw4mIWe2GaRUx03I16nq0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.js", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000769822941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.js", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.yer1rmenf9.js", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000769822941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yer1rmenf9" + }, + { + "Name": "integrity", + "Value": "sha256-9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hy-am.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.yer1rmenf9.js", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yer1rmenf9" + }, + { + "Name": "integrity", + "Value": "sha256-9gtDDBfb+ASRRskqNmVGMV65hn//teK38wkbcki6c9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hy-am.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/hy-am.yer1rmenf9.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/hy-am.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yer1rmenf9" + }, + { + "Name": "integrity", + "Value": "sha256-QDFCq3v4XkYd+WXbdcW40ww5U3fX5XotgR4LPqS7PwY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/hy-am.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.js", + "AssetFile": "adminlte/plugins/moment/locale/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000912408759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.js", + "AssetFile": "adminlte/plugins/moment/locale/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.rafj96vvw6.js", + "AssetFile": "adminlte/plugins/moment/locale/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000912408759" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rafj96vvw6" + }, + { + "Name": "integrity", + "Value": "sha256-MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.rafj96vvw6.js", + "AssetFile": "adminlte/plugins/moment/locale/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3082" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rafj96vvw6" + }, + { + "Name": "integrity", + "Value": "sha256-MwVJh4E4cSMMXW015dB2k4osODxkLpECRWKXbLkSdac=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/id.rafj96vvw6.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1095" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rafj96vvw6" + }, + { + "Name": "integrity", + "Value": "sha256-Sfad0dSNL2GGQS1Udy+BpNDp8FtuHTtyXziWqUieMY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/id.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.a85b1s1tp9.js", + "AssetFile": "adminlte/plugins/moment/locale/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000733137830" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a85b1s1tp9" + }, + { + "Name": "integrity", + "Value": "sha256-xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.a85b1s1tp9.js", + "AssetFile": "adminlte/plugins/moment/locale/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a85b1s1tp9" + }, + { + "Name": "integrity", + "Value": "sha256-xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.a85b1s1tp9.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a85b1s1tp9" + }, + { + "Name": "integrity", + "Value": "sha256-bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/is.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.js", + "AssetFile": "adminlte/plugins/moment/locale/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000733137830" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.js", + "AssetFile": "adminlte/plugins/moment/locale/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xi97w23DTA/aqJ+xB3Gr2oHEUPkdbvmfurxNI2Thxqc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/is.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1363" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZiay1sb6S7HilQhYrPhp2dy7ON9/UiFr9JiVF5o2oA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.i0wirmgs0d.js", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000994035785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i0wirmgs0d" + }, + { + "Name": "integrity", + "Value": "sha256-bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.i0wirmgs0d.js", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i0wirmgs0d" + }, + { + "Name": "integrity", + "Value": "sha256-bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it-ch.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.i0wirmgs0d.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i0wirmgs0d" + }, + { + "Name": "integrity", + "Value": "sha256-0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it-ch.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000994035785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.js", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bnqAinrX8g7Xrt6Zd53yaN4JhYhyB3yLGTRFUvkPrkU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it-ch.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/it-ch.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1005" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0nMGKmUbARbYSfbFg2tjZIwI1dpLdLAkUsHhDQUqRTo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.js", + "AssetFile": "adminlte/plugins/moment/locale/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000901713255" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.js", + "AssetFile": "adminlte/plugins/moment/locale/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.xo44l9znw3.js", + "AssetFile": "adminlte/plugins/moment/locale/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000901713255" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo44l9znw3" + }, + { + "Name": "integrity", + "Value": "sha256-wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.xo44l9znw3.js", + "AssetFile": "adminlte/plugins/moment/locale/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo44l9znw3" + }, + { + "Name": "integrity", + "Value": "sha256-wdkv+fVmwTpVQf2QWwE6p4c3Zym4BqmvFEYTcVJ6zQU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/it.xo44l9znw3.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1108" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo44l9znw3" + }, + { + "Name": "integrity", + "Value": "sha256-cKnFfSzXVQ/R7A0cggwimfWlmbd5DKdBs05HE7LVWDQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/it.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.iit906d0p4.js", + "AssetFile": "adminlte/plugins/moment/locale/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000713775874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iit906d0p4" + }, + { + "Name": "integrity", + "Value": "sha256-qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.iit906d0p4.js", + "AssetFile": "adminlte/plugins/moment/locale/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iit906d0p4" + }, + { + "Name": "integrity", + "Value": "sha256-qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.iit906d0p4.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iit906d0p4" + }, + { + "Name": "integrity", + "Value": "sha256-czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ja.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.js", + "AssetFile": "adminlte/plugins/moment/locale/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000713775874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.js", + "AssetFile": "adminlte/plugins/moment/locale/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qqWjq22DpYdUU0BYpXKuTONziliRSD+7sha0K4mI7+M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ja.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-czDaf8KukZAinkKwtO0QArBPxebW5hhWE8+pSHHTJGE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.js", + "AssetFile": "adminlte/plugins/moment/locale/jv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000922509225" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.js", + "AssetFile": "adminlte/plugins/moment/locale/jv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3091" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/jv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.ogzyjvnp8p.js", + "AssetFile": "adminlte/plugins/moment/locale/jv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000922509225" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogzyjvnp8p" + }, + { + "Name": "integrity", + "Value": "sha256-+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/jv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.ogzyjvnp8p.js", + "AssetFile": "adminlte/plugins/moment/locale/jv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3091" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogzyjvnp8p" + }, + { + "Name": "integrity", + "Value": "sha256-+Jh7bcjsB/OBPw9fkttCzvT/lDNcfMknLIH4qsiWBd4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/jv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/jv.ogzyjvnp8p.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/jv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1083" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogzyjvnp8p" + }, + { + "Name": "integrity", + "Value": "sha256-c3VrT5C6wIk8Plb6ES0uPmd9IP7qDy8hjtCfURiKYw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/jv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.js", + "AssetFile": "adminlte/plugins/moment/locale/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000784313725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.js", + "AssetFile": "adminlte/plugins/moment/locale/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.ngridoyuue.js", + "AssetFile": "adminlte/plugins/moment/locale/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000784313725" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngridoyuue" + }, + { + "Name": "integrity", + "Value": "sha256-h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.ngridoyuue.js", + "AssetFile": "adminlte/plugins/moment/locale/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4283" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngridoyuue" + }, + { + "Name": "integrity", + "Value": "sha256-h4g7dlZ7BtII5QXJgu1EYiepcUUAZIIwgQLJUe5eXJw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ka.ngridoyuue.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngridoyuue" + }, + { + "Name": "integrity", + "Value": "sha256-yvhDsAnqCc8lsgpv8J0PMBiP1F8UpVUBqJQi2BFCRo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ka.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.js", + "AssetFile": "adminlte/plugins/moment/locale/kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000834028357" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1198" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.js", + "AssetFile": "adminlte/plugins/moment/locale/kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3232" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1198" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.rviycdbeeq.js", + "AssetFile": "adminlte/plugins/moment/locale/kk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000834028357" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1198" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rviycdbeeq" + }, + { + "Name": "integrity", + "Value": "sha256-F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.rviycdbeeq.js", + "AssetFile": "adminlte/plugins/moment/locale/kk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3232" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rviycdbeeq" + }, + { + "Name": "integrity", + "Value": "sha256-F6SJyyNKTZ9V/y8WJC/CFKXcSwQV7bmKe0QX4ZJS5eU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kk.rviycdbeeq.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/kk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1198" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rviycdbeeq" + }, + { + "Name": "integrity", + "Value": "sha256-SaU4SKVtwW4pQqioNYzq66LAX3ipxJib37SV8L5kIz0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.js", + "AssetFile": "adminlte/plugins/moment/locale/km.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000729927007" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.js", + "AssetFile": "adminlte/plugins/moment/locale/km.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/km.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.uyc8px6cj5.js", + "AssetFile": "adminlte/plugins/moment/locale/km.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000729927007" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8px6cj5" + }, + { + "Name": "integrity", + "Value": "sha256-pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/km.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.uyc8px6cj5.js", + "AssetFile": "adminlte/plugins/moment/locale/km.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4183" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8px6cj5" + }, + { + "Name": "integrity", + "Value": "sha256-pjBCTLJO3xFpG3ae4LKE1ldfkAixffAOBE4CRMmMzJQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/km.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/km.uyc8px6cj5.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/km.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1369" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uyc8px6cj5" + }, + { + "Name": "integrity", + "Value": "sha256-EndswMQ53pRV2WQIcQB9JA68BqQJpnJqghLBQHvmJZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/km.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.js", + "AssetFile": "adminlte/plugins/moment/locale/kn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000656167979" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.js", + "AssetFile": "adminlte/plugins/moment/locale/kn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/kn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.kup67x4vdw.js", + "AssetFile": "adminlte/plugins/moment/locale/kn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000656167979" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kup67x4vdw" + }, + { + "Name": "integrity", + "Value": "sha256-XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.kup67x4vdw.js", + "AssetFile": "adminlte/plugins/moment/locale/kn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5178" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kup67x4vdw" + }, + { + "Name": "integrity", + "Value": "sha256-XFMKRk84Cvd+R1w//EKFFTRyTkDu3NY5SzniZ8fbLso=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/kn.kup67x4vdw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/kn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kup67x4vdw" + }, + { + "Name": "integrity", + "Value": "sha256-UY7dzhq/Nx2XqYgjSdWr11XvyYNo8gT2lLVSdfIWCqY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/kn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.ed5ektm7my.js", + "AssetFile": "adminlte/plugins/moment/locale/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000986193294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ed5ektm7my" + }, + { + "Name": "integrity", + "Value": "sha256-slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.ed5ektm7my.js", + "AssetFile": "adminlte/plugins/moment/locale/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ed5ektm7my" + }, + { + "Name": "integrity", + "Value": "sha256-slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.ed5ektm7my.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ed5ektm7my" + }, + { + "Name": "integrity", + "Value": "sha256-YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ko.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.js", + "AssetFile": "adminlte/plugins/moment/locale/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000986193294" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.js", + "AssetFile": "adminlte/plugins/moment/locale/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-slq8NettefkVxq0/ImQID06LOSv7J4RRVp5QjX0/4VE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ko.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YEStmd5tUzrZ63ED1xwPc1GkIZ4bL8/j7lVfaCdFSjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.js", + "AssetFile": "adminlte/plugins/moment/locale/ku.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000744047619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.js", + "AssetFile": "adminlte/plugins/moment/locale/ku.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ku.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.xdgsib9kui.js", + "AssetFile": "adminlte/plugins/moment/locale/ku.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000744047619" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdgsib9kui" + }, + { + "Name": "integrity", + "Value": "sha256-C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ku.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.xdgsib9kui.js", + "AssetFile": "adminlte/plugins/moment/locale/ku.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdgsib9kui" + }, + { + "Name": "integrity", + "Value": "sha256-C9A+3ayS38WEgVBAQ2C6aVuecQDwa+Rd1Ro5pnJaTpY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ku.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ku.xdgsib9kui.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ku.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1343" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xdgsib9kui" + }, + { + "Name": "integrity", + "Value": "sha256-Sb4a2RKOTxAgT+4NX1dIPwsNGcLiZ66aW6nIHnwfh/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ku.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.c9eray075c.js", + "AssetFile": "adminlte/plugins/moment/locale/ky.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000823723229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1213" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c9eray075c" + }, + { + "Name": "integrity", + "Value": "sha256-EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ky.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.c9eray075c.js", + "AssetFile": "adminlte/plugins/moment/locale/ky.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c9eray075c" + }, + { + "Name": "integrity", + "Value": "sha256-EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ky.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.c9eray075c.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ky.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1213" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c9eray075c" + }, + { + "Name": "integrity", + "Value": "sha256-66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ky.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.js", + "AssetFile": "adminlte/plugins/moment/locale/ky.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000823723229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1213" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.js", + "AssetFile": "adminlte/plugins/moment/locale/ky.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EK1JejjQOb3QFBHtTz8LBuL5QT9fjLDugekZW1DrOlQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ky.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ky.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1213" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-66gmCM7WO/oe8W94mM2I+hqPn7GoYmlE6v59/1pNx8E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.js", + "AssetFile": "adminlte/plugins/moment/locale/lb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000597371565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.js", + "AssetFile": "adminlte/plugins/moment/locale/lb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.schbg9pa4r.js", + "AssetFile": "adminlte/plugins/moment/locale/lb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000597371565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "schbg9pa4r" + }, + { + "Name": "integrity", + "Value": "sha256-nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.schbg9pa4r.js", + "AssetFile": "adminlte/plugins/moment/locale/lb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "schbg9pa4r" + }, + { + "Name": "integrity", + "Value": "sha256-nBBp3jDlARUHoKqPXbsq2Uc73A38h7y+IlFDeGyc+Ak=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lb.schbg9pa4r.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1673" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "schbg9pa4r" + }, + { + "Name": "integrity", + "Value": "sha256-NmNmQp0Xaok77FhfBcysHif/NSpjMWl9jtY8hBIC1D0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.js", + "AssetFile": "adminlte/plugins/moment/locale/lo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000940733772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.js", + "AssetFile": "adminlte/plugins/moment/locale/lo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3225" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.rnrqdjoslg.js", + "AssetFile": "adminlte/plugins/moment/locale/lo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000940733772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnrqdjoslg" + }, + { + "Name": "integrity", + "Value": "sha256-eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.rnrqdjoslg.js", + "AssetFile": "adminlte/plugins/moment/locale/lo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3225" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnrqdjoslg" + }, + { + "Name": "integrity", + "Value": "sha256-eRjIvAdoyESmBYNR2ZYIX54D+D0KOjp4NBIwgKLWtJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lo.rnrqdjoslg.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rnrqdjoslg" + }, + { + "Name": "integrity", + "Value": "sha256-fasszqqFDIvDpfpRuxK6gjkPVS3uDp2QJxt25JZGn48=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.js", + "AssetFile": "adminlte/plugins/moment/locale/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000648929267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.js", + "AssetFile": "adminlte/plugins/moment/locale/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4911" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.n1soahnnai.js", + "AssetFile": "adminlte/plugins/moment/locale/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000648929267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1soahnnai" + }, + { + "Name": "integrity", + "Value": "sha256-Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.n1soahnnai.js", + "AssetFile": "adminlte/plugins/moment/locale/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4911" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1soahnnai" + }, + { + "Name": "integrity", + "Value": "sha256-Bf6kBDpHIJ/LYahyzLcNkz4vnAGCg3NQQyNeqfVoSyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lt.n1soahnnai.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1540" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1soahnnai" + }, + { + "Name": "integrity", + "Value": "sha256-mnYVffMDko9Ci6/pG1/pf+BEmWymMxKPJDAlvOvghDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.js", + "AssetFile": "adminlte/plugins/moment/locale/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000738552437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.js", + "AssetFile": "adminlte/plugins/moment/locale/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.sidpwaga46.js", + "AssetFile": "adminlte/plugins/moment/locale/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000738552437" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sidpwaga46" + }, + { + "Name": "integrity", + "Value": "sha256-TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.sidpwaga46.js", + "AssetFile": "adminlte/plugins/moment/locale/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sidpwaga46" + }, + { + "Name": "integrity", + "Value": "sha256-TOfjybNqb7OdrswOo4i0Jw3az6MeEzrRzoWFZ1W68FE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/lv.sidpwaga46.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1353" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sidpwaga46" + }, + { + "Name": "integrity", + "Value": "sha256-jA9Et/smw8bzJ0EBBfx1NwZn9ZTizEF6NaZGg2cml7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/lv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.2mqtnjy5cp.js", + "AssetFile": "adminlte/plugins/moment/locale/me.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000718390805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqtnjy5cp" + }, + { + "Name": "integrity", + "Value": "sha256-BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/me.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.2mqtnjy5cp.js", + "AssetFile": "adminlte/plugins/moment/locale/me.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqtnjy5cp" + }, + { + "Name": "integrity", + "Value": "sha256-BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/me.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.2mqtnjy5cp.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/me.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqtnjy5cp" + }, + { + "Name": "integrity", + "Value": "sha256-uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/me.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.js", + "AssetFile": "adminlte/plugins/moment/locale/me.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000718390805" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.js", + "AssetFile": "adminlte/plugins/moment/locale/me.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4580" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BtFriK5yHn+PDV9rLXFShxWp6Iv0JCq6kD9Rz0nG+40=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/me.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/me.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1391" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uQq5V8WaQLiP8ZI4df31ExOKMN2VDjis06lOg6URi38=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.js", + "AssetFile": "adminlte/plugins/moment/locale/mi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000980392157" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.js", + "AssetFile": "adminlte/plugins/moment/locale/mi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.lo4dphjicz.js", + "AssetFile": "adminlte/plugins/moment/locale/mi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000980392157" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo4dphjicz" + }, + { + "Name": "integrity", + "Value": "sha256-C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.lo4dphjicz.js", + "AssetFile": "adminlte/plugins/moment/locale/mi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2633" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo4dphjicz" + }, + { + "Name": "integrity", + "Value": "sha256-C1paW8c4gvehIbUuL1XaG46j58ADtbQqaunLrs14Vzo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mi.lo4dphjicz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lo4dphjicz" + }, + { + "Name": "integrity", + "Value": "sha256-HNZKrbqJkgzD2qHu0ZvcVMr4FekVs0MbFoFf2cU5bjc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.js", + "AssetFile": "adminlte/plugins/moment/locale/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000789889415" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.js", + "AssetFile": "adminlte/plugins/moment/locale/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.ntdtk1ar3b.js", + "AssetFile": "adminlte/plugins/moment/locale/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000789889415" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ntdtk1ar3b" + }, + { + "Name": "integrity", + "Value": "sha256-xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.ntdtk1ar3b.js", + "AssetFile": "adminlte/plugins/moment/locale/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ntdtk1ar3b" + }, + { + "Name": "integrity", + "Value": "sha256-xXwZSrBlLjekH8YMNGsJ/AOyUpnomgBGZB4kZJ7gVCA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mk.ntdtk1ar3b.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1265" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ntdtk1ar3b" + }, + { + "Name": "integrity", + "Value": "sha256-0wqE/2k/KYhen8sWtPAxUET8deISCQ4gDqedsd8NKXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.js", + "AssetFile": "adminlte/plugins/moment/locale/ml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000822368421" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.js", + "AssetFile": "adminlte/plugins/moment/locale/ml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.p222sb075u.js", + "AssetFile": "adminlte/plugins/moment/locale/ml.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000822368421" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p222sb075u" + }, + { + "Name": "integrity", + "Value": "sha256-Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ml.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.p222sb075u.js", + "AssetFile": "adminlte/plugins/moment/locale/ml.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p222sb075u" + }, + { + "Name": "integrity", + "Value": "sha256-Ad8UITGpC008rrr9n9Uq53qn53kfDg8MY0qtUhLe2IM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ml.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ml.p222sb075u.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ml.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p222sb075u" + }, + { + "Name": "integrity", + "Value": "sha256-rNWroK0BpVssDKm9XweihgGBlZaOUDvB2b+mXFfm5+0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ml.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.222ueelfk6.js", + "AssetFile": "adminlte/plugins/moment/locale/mn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000757575758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "222ueelfk6" + }, + { + "Name": "integrity", + "Value": "sha256-FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.222ueelfk6.js", + "AssetFile": "adminlte/plugins/moment/locale/mn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "222ueelfk6" + }, + { + "Name": "integrity", + "Value": "sha256-FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.222ueelfk6.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "222ueelfk6" + }, + { + "Name": "integrity", + "Value": "sha256-oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.js", + "AssetFile": "adminlte/plugins/moment/locale/mn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000757575758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.js", + "AssetFile": "adminlte/plugins/moment/locale/mn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FsSwWYVi4bznkM5F2rdIqFhOb+R9b3x04yRD6NLoiCg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oOk1H2zk2zVQnDK+5USoRIdRzR09sMpkCS6WVy/5FgE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.js", + "AssetFile": "adminlte/plugins/moment/locale/mr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000561167228" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1781" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.js", + "AssetFile": "adminlte/plugins/moment/locale/mr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7887" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1781" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.l8yi58696b.js", + "AssetFile": "adminlte/plugins/moment/locale/mr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000561167228" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1781" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8yi58696b" + }, + { + "Name": "integrity", + "Value": "sha256-K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.l8yi58696b.js", + "AssetFile": "adminlte/plugins/moment/locale/mr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7887" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8yi58696b" + }, + { + "Name": "integrity", + "Value": "sha256-K53gbyVi7TqnkzhwOrj/O9HTwSh0PYRPnPzI1OF/+rk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mr.l8yi58696b.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1781" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l8yi58696b" + }, + { + "Name": "integrity", + "Value": "sha256-6TuZWComVLoIxt/XeHZV6K/n9oYRhX/lhrWPB3oNmlk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.js", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000940733772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.js", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.ylipjf7bhg.js", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000940733772" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylipjf7bhg" + }, + { + "Name": "integrity", + "Value": "sha256-dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms-my.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.ylipjf7bhg.js", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3041" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylipjf7bhg" + }, + { + "Name": "integrity", + "Value": "sha256-dukP2n9Av39m+ienz/D3I8IBOFpgsvyV/pZ40w5xP78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms-my.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms-my.ylipjf7bhg.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ms-my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ylipjf7bhg" + }, + { + "Name": "integrity", + "Value": "sha256-wocvMAAFYQo+M2U/H2nZw40BLDkNb4i5qxQNyvmmh4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms-my.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.js", + "AssetFile": "adminlte/plugins/moment/locale/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000972762646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.js", + "AssetFile": "adminlte/plugins/moment/locale/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2983" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.lfji5isjzw.js", + "AssetFile": "adminlte/plugins/moment/locale/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000972762646" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfji5isjzw" + }, + { + "Name": "integrity", + "Value": "sha256-H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.lfji5isjzw.js", + "AssetFile": "adminlte/plugins/moment/locale/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2983" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfji5isjzw" + }, + { + "Name": "integrity", + "Value": "sha256-H6D7yEam7VvibNj1bXDXdJk0cWGajVIdJBvaqJC9eWw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ms.lfji5isjzw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lfji5isjzw" + }, + { + "Name": "integrity", + "Value": "sha256-kYkPAIXEME0fPR7BjlLAUYm2qwP+Ow3dD0FYzVtFBOc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ms.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.js", + "AssetFile": "adminlte/plugins/moment/locale/mt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001063829787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.js", + "AssetFile": "adminlte/plugins/moment/locale/mt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.qjt22ugeo7.js", + "AssetFile": "adminlte/plugins/moment/locale/mt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001063829787" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjt22ugeo7" + }, + { + "Name": "integrity", + "Value": "sha256-6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.qjt22ugeo7.js", + "AssetFile": "adminlte/plugins/moment/locale/mt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjt22ugeo7" + }, + { + "Name": "integrity", + "Value": "sha256-6gPP62ncG1u23E9gysbs245PQH4ObdzHqcihajpsXm0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/mt.qjt22ugeo7.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/mt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "939" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjt22ugeo7" + }, + { + "Name": "integrity", + "Value": "sha256-qlPeE47VXiHwbyI+Yz7r7kbMEJBDwngKPRUUDU9VdBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/mt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.fj68skr0q6.js", + "AssetFile": "adminlte/plugins/moment/locale/my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000769822941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fj68skr0q6" + }, + { + "Name": "integrity", + "Value": "sha256-5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/my.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.fj68skr0q6.js", + "AssetFile": "adminlte/plugins/moment/locale/my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fj68skr0q6" + }, + { + "Name": "integrity", + "Value": "sha256-5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/my.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.fj68skr0q6.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fj68skr0q6" + }, + { + "Name": "integrity", + "Value": "sha256-ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/my.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.js", + "AssetFile": "adminlte/plugins/moment/locale/my.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000769822941" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.js", + "AssetFile": "adminlte/plugins/moment/locale/my.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5RCP+thCxSmORS7N9nDVSjNkkgIn1NDDU6xo2XQYEiE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/my.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/my.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1298" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ktMIRwW7r8AIgkWGRGWkJ2pksei4bR/kGjqlNfN5d7g=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.js", + "AssetFile": "adminlte/plugins/moment/locale/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.js", + "AssetFile": "adminlte/plugins/moment/locale/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.pfh96v5uq9.js", + "AssetFile": "adminlte/plugins/moment/locale/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfh96v5uq9" + }, + { + "Name": "integrity", + "Value": "sha256-hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.pfh96v5uq9.js", + "AssetFile": "adminlte/plugins/moment/locale/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2533" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfh96v5uq9" + }, + { + "Name": "integrity", + "Value": "sha256-hTIvxG1ABN5wpUcqL2kHX1LpStzoU/es51fgi6CN0Pk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nb.pfh96v5uq9.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pfh96v5uq9" + }, + { + "Name": "integrity", + "Value": "sha256-+TdvBU7TQ074tSe54NnscVf3+WXA1xWu5L0SZFW9x18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.8ept1bns04.js", + "AssetFile": "adminlte/plugins/moment/locale/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683994528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ept1bns04" + }, + { + "Name": "integrity", + "Value": "sha256-0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.8ept1bns04.js", + "AssetFile": "adminlte/plugins/moment/locale/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4942" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ept1bns04" + }, + { + "Name": "integrity", + "Value": "sha256-0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.8ept1bns04.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8ept1bns04" + }, + { + "Name": "integrity", + "Value": "sha256-VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ne.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.js", + "AssetFile": "adminlte/plugins/moment/locale/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683994528" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.js", + "AssetFile": "adminlte/plugins/moment/locale/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4942" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0EJtbS03xHRzePpqrmWiKW/OkBE5a1Hhbq4jr+v8q88=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ne.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VvvzbZ0EHb9WoJK165rvdL5xGfvWQgdEJ/K7W2KCZPc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.9xv1hak5yd.js", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000753012048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xv1hak5yd" + }, + { + "Name": "integrity", + "Value": "sha256-Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl-be.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.9xv1hak5yd.js", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3988" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xv1hak5yd" + }, + { + "Name": "integrity", + "Value": "sha256-Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl-be.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.9xv1hak5yd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9xv1hak5yd" + }, + { + "Name": "integrity", + "Value": "sha256-ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl-be.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.js", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000753012048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.js", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3988" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Iw92v3nH3Ja5Nsx7UjwAXp9chzJJLa+6xVlVa1v9VwM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl-be.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nl-be.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZDrhdZlY6BUaaxzVkJwPMN8aXoe/5Y8tDV11WVAWgag=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.js", + "AssetFile": "adminlte/plugins/moment/locale/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000754147813" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.js", + "AssetFile": "adminlte/plugins/moment/locale/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.zqui0u6yc0.js", + "AssetFile": "adminlte/plugins/moment/locale/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000754147813" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqui0u6yc0" + }, + { + "Name": "integrity", + "Value": "sha256-1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.zqui0u6yc0.js", + "AssetFile": "adminlte/plugins/moment/locale/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4027" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqui0u6yc0" + }, + { + "Name": "integrity", + "Value": "sha256-1Xt42NlHefypMoKTmynLzsVZzGuFP2H3oeSBElR6cls=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nl.zqui0u6yc0.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zqui0u6yc0" + }, + { + "Name": "integrity", + "Value": "sha256-Zdv2ZSF05zzrthUgKSA3tw0TAaV/pmRfrFJULWEL8zA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.bw47jws7v4.js", + "AssetFile": "adminlte/plugins/moment/locale/nn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001066098081" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw47jws7v4" + }, + { + "Name": "integrity", + "Value": "sha256-iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.bw47jws7v4.js", + "AssetFile": "adminlte/plugins/moment/locale/nn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw47jws7v4" + }, + { + "Name": "integrity", + "Value": "sha256-iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.bw47jws7v4.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bw47jws7v4" + }, + { + "Name": "integrity", + "Value": "sha256-Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/nn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.js", + "AssetFile": "adminlte/plugins/moment/locale/nn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001066098081" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.js", + "AssetFile": "adminlte/plugins/moment/locale/nn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2461" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iwdJnMGyqMpfaxIhm++SmUqJc+4ZEEbroSez+l7efj0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/nn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/nn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "937" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Romu4eW+Ut6aO1zVaVs6UzPzEbDvUGY7WTqg7yViOjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.c100yv5xic.js", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000877963126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c100yv5xic" + }, + { + "Name": "integrity", + "Value": "sha256-MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/oc-lnc.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.c100yv5xic.js", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c100yv5xic" + }, + { + "Name": "integrity", + "Value": "sha256-MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/oc-lnc.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.c100yv5xic.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c100yv5xic" + }, + { + "Name": "integrity", + "Value": "sha256-4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/oc-lnc.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.js", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000877963126" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.js", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MM5UVDYPZ9tdqUw70uY9QXtQuQHClUd84cWr+CC6W1Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/oc-lnc.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/oc-lnc.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4oMu8UnF7ZMYmKptYlalEfl012Pl1vQG6djW8kreOTI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.js", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000648088140" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.js", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.ol5oewxw77.js", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000648088140" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ol5oewxw77" + }, + { + "Name": "integrity", + "Value": "sha256-pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pa-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.ol5oewxw77.js", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ol5oewxw77" + }, + { + "Name": "integrity", + "Value": "sha256-pG+HW1ArdEWPfSaPQENqVoVIb81yTocfBMiDQ+6/XtQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pa-in.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pa-in.ol5oewxw77.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pa-in.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1542" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ol5oewxw77" + }, + { + "Name": "integrity", + "Value": "sha256-Uq+I+KtmF/bV/GiS4FXWJwRBzjgvFGeXxpLxSRxvwhE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pa-in.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.js", + "AssetFile": "adminlte/plugins/moment/locale/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000667556742" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.js", + "AssetFile": "adminlte/plugins/moment/locale/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5146" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.zm3h6geaj5.js", + "AssetFile": "adminlte/plugins/moment/locale/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000667556742" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zm3h6geaj5" + }, + { + "Name": "integrity", + "Value": "sha256-q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.zm3h6geaj5.js", + "AssetFile": "adminlte/plugins/moment/locale/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5146" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zm3h6geaj5" + }, + { + "Name": "integrity", + "Value": "sha256-q5J4CKgDypoyhp1Y+ZMPpPlbX+Ebr1kHGdGd06hLf/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pl.zm3h6geaj5.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zm3h6geaj5" + }, + { + "Name": "integrity", + "Value": "sha256-Ts6SnJTY9GeEw8sVqFs5l2vODaoqywPEXjv+lZs+MLA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.js", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.js", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.uv1doka9fv.js", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uv1doka9fv" + }, + { + "Name": "integrity", + "Value": "sha256-yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.uv1doka9fv.js", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uv1doka9fv" + }, + { + "Name": "integrity", + "Value": "sha256-yhIHM+QaAx1sRQ19zdzfHsyhJSX4dBn+PwKNgWvNv8A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt-br.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt-br.uv1doka9fv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pt-br.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uv1doka9fv" + }, + { + "Name": "integrity", + "Value": "sha256-UVxcu2xFY6AyAdq0/PrAt5m8E8ZjdyctM7IZmsFLUso=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt-br.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.js", + "AssetFile": "adminlte/plugins/moment/locale/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000989119683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1010" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.js", + "AssetFile": "adminlte/plugins/moment/locale/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1010" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.q28zzlh9si.js", + "AssetFile": "adminlte/plugins/moment/locale/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000989119683" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1010" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q28zzlh9si" + }, + { + "Name": "integrity", + "Value": "sha256-otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.q28zzlh9si.js", + "AssetFile": "adminlte/plugins/moment/locale/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q28zzlh9si" + }, + { + "Name": "integrity", + "Value": "sha256-otqdNAq6jZtPZAAWiwF6Mb7zpLRT3ai8Ise2ZdTRNv0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/pt.q28zzlh9si.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1010" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q28zzlh9si" + }, + { + "Name": "integrity", + "Value": "sha256-31R40+vh/y18avmuwkjYpXBryfkgIrZtey54D4hEPvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/pt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.js", + "AssetFile": "adminlte/plugins/moment/locale/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.js", + "AssetFile": "adminlte/plugins/moment/locale/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.t7zh2l02pa.js", + "AssetFile": "adminlte/plugins/moment/locale/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000900090009" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t7zh2l02pa" + }, + { + "Name": "integrity", + "Value": "sha256-d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.t7zh2l02pa.js", + "AssetFile": "adminlte/plugins/moment/locale/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t7zh2l02pa" + }, + { + "Name": "integrity", + "Value": "sha256-d/3SI95S/vmWEhvndUFQSf99NSZVS6199TbW87t9MOU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ro.t7zh2l02pa.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t7zh2l02pa" + }, + { + "Name": "integrity", + "Value": "sha256-E7W+RiUF7LySRg6KJDexVvFsH96ye8BRGDc7XH9cy1Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ro.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.js", + "AssetFile": "adminlte/plugins/moment/locale/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000387747189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.js", + "AssetFile": "adminlte/plugins/moment/locale/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.p2ys4rfx1l.js", + "AssetFile": "adminlte/plugins/moment/locale/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000387747189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2ys4rfx1l" + }, + { + "Name": "integrity", + "Value": "sha256-gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.p2ys4rfx1l.js", + "AssetFile": "adminlte/plugins/moment/locale/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2ys4rfx1l" + }, + { + "Name": "integrity", + "Value": "sha256-gZuXyqbqqwcBUBz7Be1gpLHZJ2R9Xb7VKO3xAC9ezRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ru.p2ys4rfx1l.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2578" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2ys4rfx1l" + }, + { + "Name": "integrity", + "Value": "sha256-WupbEZgl/GUnDUgi/lnxnkLcJa0ZZaHZJ7E9CG98kEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ru.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.js", + "AssetFile": "adminlte/plugins/moment/locale/sd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000934579439" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1069" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.js", + "AssetFile": "adminlte/plugins/moment/locale/sd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2885" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1069" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.uipyf7o8ap.js", + "AssetFile": "adminlte/plugins/moment/locale/sd.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000934579439" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1069" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uipyf7o8ap" + }, + { + "Name": "integrity", + "Value": "sha256-St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.uipyf7o8ap.js", + "AssetFile": "adminlte/plugins/moment/locale/sd.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2885" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uipyf7o8ap" + }, + { + "Name": "integrity", + "Value": "sha256-St9iFODpBomWSXHTI38OgtJSjRVCZom61IK7xDRjq5I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sd.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sd.uipyf7o8ap.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sd.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1069" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uipyf7o8ap" + }, + { + "Name": "integrity", + "Value": "sha256-qiRJgQVQBBBkhgiKLGeSnhfn9PVe8gl7RTUFiw4y5BY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sd.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.2vnkbmjinq.js", + "AssetFile": "adminlte/plugins/moment/locale/se.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2vnkbmjinq" + }, + { + "Name": "integrity", + "Value": "sha256-Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/se.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.2vnkbmjinq.js", + "AssetFile": "adminlte/plugins/moment/locale/se.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2vnkbmjinq" + }, + { + "Name": "integrity", + "Value": "sha256-Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/se.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.2vnkbmjinq.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/se.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2vnkbmjinq" + }, + { + "Name": "integrity", + "Value": "sha256-7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/se.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.js", + "AssetFile": "adminlte/plugins/moment/locale/se.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001021450460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.js", + "AssetFile": "adminlte/plugins/moment/locale/se.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mpevb1xQE0X4g+uc+bXil2ztW/JYHXBkMZiHWkfxq9Y=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/se.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/se.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "978" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7p0to3VwR1FXxHLsUVi41JPkBWDRMALKdQXFMiaHomE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.0qglnhsoc0.js", + "AssetFile": "adminlte/plugins/moment/locale/si.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000874125874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0qglnhsoc0" + }, + { + "Name": "integrity", + "Value": "sha256-6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/si.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.0qglnhsoc0.js", + "AssetFile": "adminlte/plugins/moment/locale/si.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0qglnhsoc0" + }, + { + "Name": "integrity", + "Value": "sha256-6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/si.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.0qglnhsoc0.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/si.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0qglnhsoc0" + }, + { + "Name": "integrity", + "Value": "sha256-FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/si.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.js", + "AssetFile": "adminlte/plugins/moment/locale/si.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000874125874" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.js", + "AssetFile": "adminlte/plugins/moment/locale/si.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3336" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6GIpplUnRel1Kds43OpsUL7+L7sP5QxyocEQk2eDN18=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/si.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/si.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FvAzxFenhmYP5tlFSf/y/FYOI1HDFzUFrRKHiUedObU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.js", + "AssetFile": "adminlte/plugins/moment/locale/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000668896321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.js", + "AssetFile": "adminlte/plugins/moment/locale/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6200" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.o7nlok538e.js", + "AssetFile": "adminlte/plugins/moment/locale/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000668896321" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o7nlok538e" + }, + { + "Name": "integrity", + "Value": "sha256-PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.o7nlok538e.js", + "AssetFile": "adminlte/plugins/moment/locale/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6200" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o7nlok538e" + }, + { + "Name": "integrity", + "Value": "sha256-PJ9+5TjEM76zvk2TzgsqCwkQJjM04Xi26w9oU+2yqoE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sk.o7nlok538e.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o7nlok538e" + }, + { + "Name": "integrity", + "Value": "sha256-CDKUOo7aHnXnpe9bOmY5jifdWQLvzqvSlUsZ7GXSPOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.0u6i8n33nt.js", + "AssetFile": "adminlte/plugins/moment/locale/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000694444444" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6i8n33nt" + }, + { + "Name": "integrity", + "Value": "sha256-GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.0u6i8n33nt.js", + "AssetFile": "adminlte/plugins/moment/locale/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6i8n33nt" + }, + { + "Name": "integrity", + "Value": "sha256-GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.0u6i8n33nt.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0u6i8n33nt" + }, + { + "Name": "integrity", + "Value": "sha256-dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.js", + "AssetFile": "adminlte/plugins/moment/locale/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000694444444" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.js", + "AssetFile": "adminlte/plugins/moment/locale/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GKeh7nsKTRog0h3jTI7lIR6bPOEDpGiGcjiX99j7V9M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dSGjGAyJ1XiaOg99vLGOObakfVkwkXGZ+Hd2Q7Ga2n8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.5zxsvxniux.js", + "AssetFile": "adminlte/plugins/moment/locale/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000968992248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5zxsvxniux" + }, + { + "Name": "integrity", + "Value": "sha256-AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.5zxsvxniux.js", + "AssetFile": "adminlte/plugins/moment/locale/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5zxsvxniux" + }, + { + "Name": "integrity", + "Value": "sha256-AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.5zxsvxniux.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5zxsvxniux" + }, + { + "Name": "integrity", + "Value": "sha256-uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sq.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.js", + "AssetFile": "adminlte/plugins/moment/locale/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000968992248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.js", + "AssetFile": "adminlte/plugins/moment/locale/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AS5Lx0md39YxACp3QUPNyiZER3VGFYguKukaH98vf8k=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sq.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uYICBFFmWCQxaOS3rbUUir3y53Dvzru6U0Hh4WMbk1M=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.8qn1z2ho33.js", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000641436818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qn1z2ho33" + }, + { + "Name": "integrity", + "Value": "sha256-YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr-cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.8qn1z2ho33.js", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5127" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qn1z2ho33" + }, + { + "Name": "integrity", + "Value": "sha256-YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr-cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.8qn1z2ho33.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8qn1z2ho33" + }, + { + "Name": "integrity", + "Value": "sha256-Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr-cyrl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.js", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000641436818" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.js", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5127" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YInM+5Vl0UYqszDKBZrknilIKc5OgjbZ5oVhXz60GhA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr-cyrl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sr-cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1558" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ugtz0/ocGTEUuRCjhvqSkSZ6T2MzM3/yQVANscsjD4E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.3iicz5jdyf.js", + "AssetFile": "adminlte/plugins/moment/locale/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000706214689" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3iicz5jdyf" + }, + { + "Name": "integrity", + "Value": "sha256-VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.3iicz5jdyf.js", + "AssetFile": "adminlte/plugins/moment/locale/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3iicz5jdyf" + }, + { + "Name": "integrity", + "Value": "sha256-VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.3iicz5jdyf.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3iicz5jdyf" + }, + { + "Name": "integrity", + "Value": "sha256-Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.js", + "AssetFile": "adminlte/plugins/moment/locale/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000706214689" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.js", + "AssetFile": "adminlte/plugins/moment/locale/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VXBLqq0xE7X9ekgoUNWuifP7rDmrULf3gnQ/9s5ZcLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1415" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Roii6TEEF6e+aIZezwEttsVkW+2enmgDHkRh4KY4yl8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.dlgj5mtohc.js", + "AssetFile": "adminlte/plugins/moment/locale/ss.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000868809731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlgj5mtohc" + }, + { + "Name": "integrity", + "Value": "sha256-PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ss.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.dlgj5mtohc.js", + "AssetFile": "adminlte/plugins/moment/locale/ss.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlgj5mtohc" + }, + { + "Name": "integrity", + "Value": "sha256-PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ss.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.dlgj5mtohc.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ss.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dlgj5mtohc" + }, + { + "Name": "integrity", + "Value": "sha256-40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ss.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.js", + "AssetFile": "adminlte/plugins/moment/locale/ss.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000868809731" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.js", + "AssetFile": "adminlte/plugins/moment/locale/ss.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3302" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PxjcxffdU4C8YYyCE80Mj3nKnI58Pap1wOyUq2rZYLQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ss.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ss.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1150" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-40YjBQ3KiqA8gga1lOa+f6yK3dh6vC5GlugMUtRr1zk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.i9marryunm.js", + "AssetFile": "adminlte/plugins/moment/locale/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001003009027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9marryunm" + }, + { + "Name": "integrity", + "Value": "sha256-Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.i9marryunm.js", + "AssetFile": "adminlte/plugins/moment/locale/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9marryunm" + }, + { + "Name": "integrity", + "Value": "sha256-Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.i9marryunm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9marryunm" + }, + { + "Name": "integrity", + "Value": "sha256-CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.js", + "AssetFile": "adminlte/plugins/moment/locale/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001003009027" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.js", + "AssetFile": "adminlte/plugins/moment/locale/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2737" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Nna1qPqC64wdLRRGJbn70d4DHnmmYmqNMWVXhxPFwo8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CFbe+0A/eaZr4OuJQ4gKwONvpD1KG6f3EpiDLpTjI1I=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.fr4fv63t2t.js", + "AssetFile": "adminlte/plugins/moment/locale/sw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001119820829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fr4fv63t2t" + }, + { + "Name": "integrity", + "Value": "sha256-24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.fr4fv63t2t.js", + "AssetFile": "adminlte/plugins/moment/locale/sw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2236" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fr4fv63t2t" + }, + { + "Name": "integrity", + "Value": "sha256-24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.fr4fv63t2t.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fr4fv63t2t" + }, + { + "Name": "integrity", + "Value": "sha256-75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/sw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.js", + "AssetFile": "adminlte/plugins/moment/locale/sw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001119820829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.js", + "AssetFile": "adminlte/plugins/moment/locale/sw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2236" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24xFPwIxPFoTrpLhqhOiP7Qo1SwCTFSSHo3L7POUibQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/sw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/sw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "892" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-75A3kPnWxwJCNDAPlKvp1cW262in9QrMhHr/XD2HKis=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.js", + "AssetFile": "adminlte/plugins/moment/locale/ta.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000623052960" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.js", + "AssetFile": "adminlte/plugins/moment/locale/ta.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ta.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.x61txh4tbi.js", + "AssetFile": "adminlte/plugins/moment/locale/ta.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000623052960" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x61txh4tbi" + }, + { + "Name": "integrity", + "Value": "sha256-SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ta.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.x61txh4tbi.js", + "AssetFile": "adminlte/plugins/moment/locale/ta.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5740" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x61txh4tbi" + }, + { + "Name": "integrity", + "Value": "sha256-SdADufuaMXd3N/kY7eB6PCAOil7kTmYEx3jDULGvDE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ta.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ta.x61txh4tbi.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ta.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1604" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x61txh4tbi" + }, + { + "Name": "integrity", + "Value": "sha256-f3VItMnkwOKQgNFyIFpL0hlSjSeRXMTtOlY51aOXphk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ta.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.eevqcn6m3n.js", + "AssetFile": "adminlte/plugins/moment/locale/te.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000782472613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eevqcn6m3n" + }, + { + "Name": "integrity", + "Value": "sha256-irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/te.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.eevqcn6m3n.js", + "AssetFile": "adminlte/plugins/moment/locale/te.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eevqcn6m3n" + }, + { + "Name": "integrity", + "Value": "sha256-irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/te.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.eevqcn6m3n.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/te.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eevqcn6m3n" + }, + { + "Name": "integrity", + "Value": "sha256-MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/te.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.js", + "AssetFile": "adminlte/plugins/moment/locale/te.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000782472613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.js", + "AssetFile": "adminlte/plugins/moment/locale/te.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4121" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-irbRJaK6I6zMPihrHdvNN0JJZqLfUaFEWWeIFtqmglw=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/te.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/te.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1277" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MCXrC/sihp7ZYxSttwIozDb4SBTIYHRaJ3HTIEund2U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.1806v86hzl.js", + "AssetFile": "adminlte/plugins/moment/locale/tet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000961538462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1806v86hzl" + }, + { + "Name": "integrity", + "Value": "sha256-oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tet.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.1806v86hzl.js", + "AssetFile": "adminlte/plugins/moment/locale/tet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2820" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1806v86hzl" + }, + { + "Name": "integrity", + "Value": "sha256-oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tet.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.1806v86hzl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1806v86hzl" + }, + { + "Name": "integrity", + "Value": "sha256-T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tet.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.js", + "AssetFile": "adminlte/plugins/moment/locale/tet.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000961538462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.js", + "AssetFile": "adminlte/plugins/moment/locale/tet.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2820" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oYV3Eu5HZKsHGU+xtwje5CpXCj/6PFCQ55nTUZGdwwo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tet.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tet.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T7q7KOUIP75tb+cNssx1uwD1Rdgv80doyg416r0NJ4I=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.bjsa3qc3y1.js", + "AssetFile": "adminlte/plugins/moment/locale/tg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000715819613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bjsa3qc3y1" + }, + { + "Name": "integrity", + "Value": "sha256-97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tg.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.bjsa3qc3y1.js", + "AssetFile": "adminlte/plugins/moment/locale/tg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bjsa3qc3y1" + }, + { + "Name": "integrity", + "Value": "sha256-97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tg.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.bjsa3qc3y1.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bjsa3qc3y1" + }, + { + "Name": "integrity", + "Value": "sha256-kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.js", + "AssetFile": "adminlte/plugins/moment/locale/tg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000715819613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.js", + "AssetFile": "adminlte/plugins/moment/locale/tg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-97n+9ySAzthDKcKeiuopMru9+JCLyrynLROemnrQZZo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tg.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1396" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kwmcDvHoO5Ht3hQGCx+lNBD8h2Kdmc5q7Mq6YIDOTVU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.1f57vbs7yh.js", + "AssetFile": "adminlte/plugins/moment/locale/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000867302689" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f57vbs7yh" + }, + { + "Name": "integrity", + "Value": "sha256-092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.1f57vbs7yh.js", + "AssetFile": "adminlte/plugins/moment/locale/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f57vbs7yh" + }, + { + "Name": "integrity", + "Value": "sha256-092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.1f57vbs7yh.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1f57vbs7yh" + }, + { + "Name": "integrity", + "Value": "sha256-ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/th.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.js", + "AssetFile": "adminlte/plugins/moment/locale/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000867302689" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.js", + "AssetFile": "adminlte/plugins/moment/locale/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3371" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-092rbDwdCJqj2TYDG5uH0kXYtUeO2Nff6P8/kuypa9A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/th.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZAU5AmHvZXgxzrE7Kjl9+5t1GGM9YwiYp2F2cjvhswI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.js", + "AssetFile": "adminlte/plugins/moment/locale/tk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000881057269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.js", + "AssetFile": "adminlte/plugins/moment/locale/tk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3270" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.lzrn55m5nl.js", + "AssetFile": "adminlte/plugins/moment/locale/tk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000881057269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzrn55m5nl" + }, + { + "Name": "integrity", + "Value": "sha256-cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.lzrn55m5nl.js", + "AssetFile": "adminlte/plugins/moment/locale/tk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3270" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzrn55m5nl" + }, + { + "Name": "integrity", + "Value": "sha256-cebjhT26RA9ZyS2bvrkhnXLHfZhXcT6H3TK2ISjt4U0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tk.lzrn55m5nl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1134" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzrn55m5nl" + }, + { + "Name": "integrity", + "Value": "sha256-AkI/suKmRhvGmRchuHsUiYr1b1FjVyhvVIsXiqMmbI4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.js", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001074113856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.js", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.l2r6nqc23o.js", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001074113856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l2r6nqc23o" + }, + { + "Name": "integrity", + "Value": "sha256-c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tl-ph.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.l2r6nqc23o.js", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l2r6nqc23o" + }, + { + "Name": "integrity", + "Value": "sha256-c9LUzjL7E6fT2DwATWLMbfyYVyGmLt/W03YBfaC+sI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tl-ph.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tl-ph.l2r6nqc23o.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tl-ph.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "930" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l2r6nqc23o" + }, + { + "Name": "integrity", + "Value": "sha256-2C7rWHKT66RpXiCb7wwLImSAsbKU3HkOyJHTzhPtr3o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tl-ph.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.js", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000757575758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.js", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.wt42ffk3tj.js", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000757575758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wt42ffk3tj" + }, + { + "Name": "integrity", + "Value": "sha256-DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tlh.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.wt42ffk3tj.js", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4689" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wt42ffk3tj" + }, + { + "Name": "integrity", + "Value": "sha256-DHC9Z3GpQN/Tg2OEiIpuud9FHnuyRgCYjNKJF+AANmU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tlh.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tlh.wt42ffk3tj.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tlh.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1319" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wt42ffk3tj" + }, + { + "Name": "integrity", + "Value": "sha256-JA7MZ0JkP670aB11hNGBAG/Sto53dk1dYuXaiNrtK48=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tlh.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.15sj16gofs.js", + "AssetFile": "adminlte/plugins/moment/locale/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000762776506" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sj16gofs" + }, + { + "Name": "integrity", + "Value": "sha256-NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.15sj16gofs.js", + "AssetFile": "adminlte/plugins/moment/locale/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sj16gofs" + }, + { + "Name": "integrity", + "Value": "sha256-NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.15sj16gofs.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "15sj16gofs" + }, + { + "Name": "integrity", + "Value": "sha256-mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.js", + "AssetFile": "adminlte/plugins/moment/locale/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000762776506" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.js", + "AssetFile": "adminlte/plugins/moment/locale/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NY79uT6om/cUSL2beRO7OZsn1B76bs8/oBUX15Zwacg=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mfivtXP4glJq0izoNMDSTT0rbI6q6d/fpLPbPFoxGzs=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.g4uam6xxut.js", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000724112962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1380" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g4uam6xxut" + }, + { + "Name": "integrity", + "Value": "sha256-AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.g4uam6xxut.js", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3879" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g4uam6xxut" + }, + { + "Name": "integrity", + "Value": "sha256-AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzl.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.g4uam6xxut.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1380" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g4uam6xxut" + }, + { + "Name": "integrity", + "Value": "sha256-nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.js", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000724112962" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1380" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.js", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3879" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AEs7/3KTwtH2kmy9qUYLyGEVhPGYqDZgT5wsgf9GDiY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1380" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nhYI1IefZVoz/Fz6VKtzTZgUYD2HzJk+EhClfUtiZgE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.jff9232uo2.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001199040767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jff9232uo2" + }, + { + "Name": "integrity", + "Value": "sha256-oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.jff9232uo2.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jff9232uo2" + }, + { + "Name": "integrity", + "Value": "sha256-oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.jff9232uo2.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jff9232uo2" + }, + { + "Name": "integrity", + "Value": "sha256-LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm-latn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001199040767" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2281" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oXtMDVwsYwHbyheB/OoRAfHuJHyKfSES3BYxccpXu2E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm-latn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzm-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LZAoLXNo6gFtEEjrzdtayd+7Fz0W8IlQPemE2R0NDoY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001095290252" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.vw128qq7rd.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001095290252" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vw128qq7rd" + }, + { + "Name": "integrity", + "Value": "sha256-L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.vw128qq7rd.js", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2904" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vw128qq7rd" + }, + { + "Name": "integrity", + "Value": "sha256-L4YtPA4BlGVymkxwkDe4zXqbU+ok6AW9Yl0LrmhNbjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/tzm.vw128qq7rd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/tzm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vw128qq7rd" + }, + { + "Name": "integrity", + "Value": "sha256-3iBrjaliSkKw7Jpilph6DOxBgIy31a2OEIIFcxyaNSc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/tzm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.24428yls4e.js", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000652315721" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1532" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24428yls4e" + }, + { + "Name": "integrity", + "Value": "sha256-UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ug-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.24428yls4e.js", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24428yls4e" + }, + { + "Name": "integrity", + "Value": "sha256-UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ug-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.24428yls4e.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1532" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24428yls4e" + }, + { + "Name": "integrity", + "Value": "sha256-H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ug-cn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.js", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000652315721" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1532" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.js", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4745" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UqG/qFGlccNtxYLUONemSdF1d4yZDnp73WGfvvUtjw8=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ug-cn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ug-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1532" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H+TKSfnqxkyzvjoD8LuuLlDw+EjZle04l9SEKnqNeFY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.gtpmy80tbm.js", + "AssetFile": "adminlte/plugins/moment/locale/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000472143532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtpmy80tbm" + }, + { + "Name": "integrity", + "Value": "sha256-NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.gtpmy80tbm.js", + "AssetFile": "adminlte/plugins/moment/locale/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6993" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtpmy80tbm" + }, + { + "Name": "integrity", + "Value": "sha256-NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.gtpmy80tbm.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtpmy80tbm" + }, + { + "Name": "integrity", + "Value": "sha256-L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.js", + "AssetFile": "adminlte/plugins/moment/locale/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000472143532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.js", + "AssetFile": "adminlte/plugins/moment/locale/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6993" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NO48kdZ6juw3pf/Rsc1GSxsdX07PqxO0wDOJutyGpks=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2117" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L/T3Wg4959kUyzhu1M9rPXQ2SNsq35WAygyxaqcEA64=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.dqgg6p7umr.js", + "AssetFile": "adminlte/plugins/moment/locale/ur.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000939849624" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqgg6p7umr" + }, + { + "Name": "integrity", + "Value": "sha256-S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ur.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.dqgg6p7umr.js", + "AssetFile": "adminlte/plugins/moment/locale/ur.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqgg6p7umr" + }, + { + "Name": "integrity", + "Value": "sha256-S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ur.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.dqgg6p7umr.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ur.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dqgg6p7umr" + }, + { + "Name": "integrity", + "Value": "sha256-bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/ur.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.js", + "AssetFile": "adminlte/plugins/moment/locale/ur.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000939849624" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.js", + "AssetFile": "adminlte/plugins/moment/locale/ur.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S435nm3+/oiIvYdoQEdzq2AzLWdXPHsz5baXNXZKe/c=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/ur.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/ur.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1063" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bYoORlRS1JVNdpklkuFaoEMx8XBHBr8dq/4+VIt0o3A=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001176470588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "849" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.js", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "849" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.ogplcs1fca.js", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001176470588" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "849" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogplcs1fca" + }, + { + "Name": "integrity", + "Value": "sha256-2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.ogplcs1fca.js", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogplcs1fca" + }, + { + "Name": "integrity", + "Value": "sha256-2D8qrwcylbqvGZPrdfqatEOmuzkJddk6h1AmwvfxYUE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz-latn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz-latn.ogplcs1fca.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uz-latn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "849" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ogplcs1fca" + }, + { + "Name": "integrity", + "Value": "sha256-z6mwQ0Kc6rMnjEYmXq85AL3lvFYTMoMXSvQbcfC4130=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz-latn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.js", + "AssetFile": "adminlte/plugins/moment/locale/uz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.js", + "AssetFile": "adminlte/plugins/moment/locale/uz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.pve1ctn5wd.js", + "AssetFile": "adminlte/plugins/moment/locale/uz.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001035196687" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pve1ctn5wd" + }, + { + "Name": "integrity", + "Value": "sha256-ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.pve1ctn5wd.js", + "AssetFile": "adminlte/plugins/moment/locale/uz.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pve1ctn5wd" + }, + { + "Name": "integrity", + "Value": "sha256-ay7xfegT4Sbd8+NS1HnVTy70k7VYFM+BhVHcl8JpclU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/uz.pve1ctn5wd.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/uz.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pve1ctn5wd" + }, + { + "Name": "integrity", + "Value": "sha256-MjD2uoZg1TFFcwC7jDIuHR/r+qqKPCiJPenHVmF1l+4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/uz.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.js", + "AssetFile": "adminlte/plugins/moment/locale/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000897666068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.js", + "AssetFile": "adminlte/plugins/moment/locale/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.wlob9m9tyk.js", + "AssetFile": "adminlte/plugins/moment/locale/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000897666068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wlob9m9tyk" + }, + { + "Name": "integrity", + "Value": "sha256-VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.wlob9m9tyk.js", + "AssetFile": "adminlte/plugins/moment/locale/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wlob9m9tyk" + }, + { + "Name": "integrity", + "Value": "sha256-VOLvA2Ndx/hWKBUuGjJmfy31NWzEc3cnjBZwGYBHr4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/vi.wlob9m9tyk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1113" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wlob9m9tyk" + }, + { + "Name": "integrity", + "Value": "sha256-mV2XMvIhECtybSP2eEOyQ+hq5yyOXpkshrn8ydXoSMY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/vi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.js", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000862068966" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.js", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.zu81krwxzk.js", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000862068966" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zu81krwxzk" + }, + { + "Name": "integrity", + "Value": "sha256-5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/x-pseudo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.zu81krwxzk.js", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3012" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zu81krwxzk" + }, + { + "Name": "integrity", + "Value": "sha256-5fzDGWphJ6bwHQJfiGiclYo4N0SegsTsfktBlGpKHzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/x-pseudo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/x-pseudo.zu81krwxzk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/x-pseudo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zu81krwxzk" + }, + { + "Name": "integrity", + "Value": "sha256-ZqlkfbeGXschZp4b4ye517g9kiaGAiqwsnDon3Xm7mA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/x-pseudo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.js", + "AssetFile": "adminlte/plugins/moment/locale/yo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001026694045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.js", + "AssetFile": "adminlte/plugins/moment/locale/yo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/yo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.u2lxiwqzwv.js", + "AssetFile": "adminlte/plugins/moment/locale/yo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001026694045" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u2lxiwqzwv" + }, + { + "Name": "integrity", + "Value": "sha256-9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/yo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.u2lxiwqzwv.js", + "AssetFile": "adminlte/plugins/moment/locale/yo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2483" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u2lxiwqzwv" + }, + { + "Name": "integrity", + "Value": "sha256-9hrwdk49E2Q/phlFptqPsDE7xUz+l1nAyJstMe3TS0k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/yo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/yo.u2lxiwqzwv.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/yo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "973" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u2lxiwqzwv" + }, + { + "Name": "integrity", + "Value": "sha256-TVA/Xtp8dCiJwZ/u40TYH1oWdPfkR/pb2dED4Q0uSqk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/yo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.z7kxxx7cjt.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kxxx7cjt" + }, + { + "Name": "integrity", + "Value": "sha256-YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.z7kxxx7cjt.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kxxx7cjt" + }, + { + "Name": "integrity", + "Value": "sha256-YcbPEBGYKpvSs31yT8epOqyOOi7LgxTbWPaURz1ThOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-cn.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-cn.z7kxxx7cjt.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-cn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1499" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kxxx7cjt" + }, + { + "Name": "integrity", + "Value": "sha256-AqU6J2anuDQvskqKk/qE9OUK5c9Fl5KxVTuSTNMuppA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-cn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.466gl9osmx.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000796178344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1255" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "466gl9osmx" + }, + { + "Name": "integrity", + "Value": "sha256-xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-hk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.466gl9osmx.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "466gl9osmx" + }, + { + "Name": "integrity", + "Value": "sha256-xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-hk.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.466gl9osmx.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1255" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "466gl9osmx" + }, + { + "Name": "integrity", + "Value": "sha256-l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-hk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000796178344" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1255" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3944" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xAPotvoDL2+MXiOBGc+RhwQs4kH9RW2TANmn7Hiq8yk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-hk.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-hk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1255" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l60s8eRVQkYcQn2TRRwZLT30pEnuIW+mepes2G8UlLA=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.1g8gi3z9vl.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000803858521" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g8gi3z9vl" + }, + { + "Name": "integrity", + "Value": "sha256-wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-mo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.1g8gi3z9vl.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3893" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g8gi3z9vl" + }, + { + "Name": "integrity", + "Value": "sha256-wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-mo.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.1g8gi3z9vl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g8gi3z9vl" + }, + { + "Name": "integrity", + "Value": "sha256-HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-mo.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000803858521" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3893" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wTxrAyK6ULo6JHv81+22tcaAvT0WymTPvNYnlZA1eHk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-mo.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-mo.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1243" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HVSGJJxSDXFGGm8KmTu0jRP2SWdvQ0Pw6CxZVd11MYc=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.i7js0jp4vl.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000814332248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i7js0jp4vl" + }, + { + "Name": "integrity", + "Value": "sha256-PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.i7js0jp4vl.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i7js0jp4vl" + }, + { + "Name": "integrity", + "Value": "sha256-PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-tw.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.i7js0jp4vl.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i7js0jp4vl" + }, + { + "Name": "integrity", + "Value": "sha256-y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locale/zh-tw.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000814332248" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.js", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PgyT/RRry0h7XdVNDEZF+HMp+WHsc9H7+QV640eHP3E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locale/zh-tw.js.gz", + "AssetFile": "adminlte/plugins/moment/locale/zh-tw.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1227" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y5rtKL0sn21o+XnlUs/xPCQBc0TyUzx5IWUd4wzLyUk=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.2o9fil0j07.js", + "AssetFile": "adminlte/plugins/moment/locales.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014757969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2o9fil0j07" + }, + { + "Name": "integrity", + "Value": "sha256-smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.2o9fil0j07.js", + "AssetFile": "adminlte/plugins/moment/locales.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "456807" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2o9fil0j07" + }, + { + "Name": "integrity", + "Value": "sha256-smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.2o9fil0j07.js.gz", + "AssetFile": "adminlte/plugins/moment/locales.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2o9fil0j07" + }, + { + "Name": "integrity", + "Value": "sha256-lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.js", + "AssetFile": "adminlte/plugins/moment/locales.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014757969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.js", + "AssetFile": "adminlte/plugins/moment/locales.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "456807" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-smSiO+tH1oQDh49CmGB0sGt4OCSse5ssSvj1iZG1/og=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.js.gz", + "AssetFile": "adminlte/plugins/moment/locales.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67759" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhEdsqwHN7DV7dd+1nXy9QzBhlwaB5zoo3hsOncRBsU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.8lsh37gv5v.js", + "AssetFile": "adminlte/plugins/moment/locales.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017593244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8lsh37gv5v" + }, + { + "Name": "integrity", + "Value": "sha256-BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.8lsh37gv5v.js", + "AssetFile": "adminlte/plugins/moment/locales.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "310355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8lsh37gv5v" + }, + { + "Name": "integrity", + "Value": "sha256-BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.8lsh37gv5v.js.gz", + "AssetFile": "adminlte/plugins/moment/locales.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8lsh37gv5v" + }, + { + "Name": "integrity", + "Value": "sha256-lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js", + "AssetFile": "adminlte/plugins/moment/locales.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017593244" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js", + "AssetFile": "adminlte/plugins/moment/locales.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "310355" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BDZAJb/24+Dm6A3R833iTFZ5WG2Ko+DxJVAt0FW1lH4=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.gz", + "AssetFile": "adminlte/plugins/moment/locales.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "56839" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lUZZdyTX9YBBRUm3KzpJoAwQJ0YMPPcpMTTvcTZSy1k=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.map", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038339148" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26082" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.map", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "140134" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.map.gz", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26082" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.o8rwhxgoy1.map", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000038339148" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26082" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8rwhxgoy1" + }, + { + "Name": "integrity", + "Value": "sha256-GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.o8rwhxgoy1.map", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "140134" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8rwhxgoy1" + }, + { + "Name": "integrity", + "Value": "sha256-GNmY5GXt6hjUHC7lrFNIPrX/KJ7fDPTLRLRK6l18rbE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/locales.min.js.o8rwhxgoy1.map.gz", + "AssetFile": "adminlte/plugins/moment/locales.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26082" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o8rwhxgoy1" + }, + { + "Name": "integrity", + "Value": "sha256-+gxxlKhiNrhYowVSlZKv81qAyerrl1f81cmRXiJqu4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/locales.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009596284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "104206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "635777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.js.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "104206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013284800" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "75273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=\"" + }, + { + "Name": "ETag", + "Value": "W/\"916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "369177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.gpasel4uls.map", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017072130" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "58574" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpasel4uls" + }, + { + "Name": "integrity", + "Value": "sha256-NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.gpasel4uls.map", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "230179" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpasel4uls" + }, + { + "Name": "integrity", + "Value": "sha256-NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.gpasel4uls.map.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "58574" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gpasel4uls" + }, + { + "Name": "integrity", + "Value": "sha256-7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "75273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.map", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017072130" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "58574" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.map", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "230179" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NCd3z1OFoSwVxjJ21NfzjoDx9rkYIR4Q0AtOcoUkKQo=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "58574" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7exvZqWWcd5TqH+Byl5iVIucvgWvStETsDpeyPBTEvQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.pckwy8f8bq.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013284800" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "75273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=\"" + }, + { + "Name": "ETag", + "Value": "W/\"916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pckwy8f8bq" + }, + { + "Name": "integrity", + "Value": "sha256-916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.pckwy8f8bq.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "369177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pckwy8f8bq" + }, + { + "Name": "integrity", + "Value": "sha256-916FTSz6OkedQ15XqZhrGE8uXngDDkuxyHZIcpuDlnU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.min.pckwy8f8bq.js.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "75273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pckwy8f8bq" + }, + { + "Name": "integrity", + "Value": "sha256-zih8hGjfhnAOh7jFcvK55UVwv7v/aqY6z6Cks8V2Uio=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.v19656uxj9.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009596284" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "104206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v19656uxj9" + }, + { + "Name": "integrity", + "Value": "sha256-U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.v19656uxj9.js", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "635777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v19656uxj9" + }, + { + "Name": "integrity", + "Value": "sha256-U5BVq1+1Ws0kNk0uXKIweJsyoqdmNAW1htzQNQT56ck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment-with-locales.v19656uxj9.js.gz", + "AssetFile": "adminlte/plugins/moment/moment-with-locales.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "104206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v19656uxj9" + }, + { + "Name": "integrity", + "Value": "sha256-SGhsxhvbbksn1jXZF0IHVIVS/m6YchnnlY3ST+dCB9E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment-with-locales.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js", + "AssetFile": "adminlte/plugins/moment/moment.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053720118" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js", + "AssetFile": "adminlte/plugins/moment/moment.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "58863" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.67cicg9cke.map", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031210986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32039" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67cicg9cke" + }, + { + "Name": "integrity", + "Value": "sha256-QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.67cicg9cke.map", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67cicg9cke" + }, + { + "Name": "integrity", + "Value": "sha256-QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.67cicg9cke.map.gz", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32039" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "67cicg9cke" + }, + { + "Name": "integrity", + "Value": "sha256-qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.gz", + "AssetFile": "adminlte/plugins/moment/moment.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.map", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031210986" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32039" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.map", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QmrpJZ+mcJwndtGBnlcxEIeywRo7uIbTfb7CTqxKL8Q=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.js.map.gz", + "AssetFile": "adminlte/plugins/moment/moment.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32039" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qxrIWIsgbjJtzSWlJI/Ij+lGXEzQ2OgVKNwMhvwUzuM=" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.sllhac5ssy.js", + "AssetFile": "adminlte/plugins/moment/moment.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053720118" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sllhac5ssy" + }, + { + "Name": "integrity", + "Value": "sha256-YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.sllhac5ssy.js", + "AssetFile": "adminlte/plugins/moment/moment.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "58863" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sllhac5ssy" + }, + { + "Name": "integrity", + "Value": "sha256-YC61xMJcWgaw+mDL55OuST8TL42CMEUFNlzQCMxV13s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/moment/moment.min.sllhac5ssy.js.gz", + "AssetFile": "adminlte/plugins/moment/moment.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sllhac5ssy" + }, + { + "Name": "integrity", + "Value": "sha256-aMH1d/343tENCXLa9GJHrh5kEo5xB+jOr7hg4prpZHQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/moment/moment.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.6thttmxi5z.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000201816347" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4954" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6thttmxi5z" + }, + { + "Name": "integrity", + "Value": "sha256-lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.6thttmxi5z.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24389" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6thttmxi5z" + }, + { + "Name": "integrity", + "Value": "sha256-lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.6thttmxi5z.css.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4954" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6thttmxi5z" + }, + { + "Name": "integrity", + "Value": "sha256-V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000201816347" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4954" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24389" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhs3HrjdUzS67Rakr1Q876eFPDhNZ5oQlXQ7yEROuUk=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4954" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/pQSIZqzYB40bxsyKtp0Hsjn4kNvVBIyYgtUTzvX5E=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.bxbrhz20oz.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000220799293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4528" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxbrhz20oz" + }, + { + "Name": "integrity", + "Value": "sha256-4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.bxbrhz20oz.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20021" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxbrhz20oz" + }, + { + "Name": "integrity", + "Value": "sha256-4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.bxbrhz20oz.css.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4528" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bxbrhz20oz" + }, + { + "Name": "integrity", + "Value": "sha256-E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000220799293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4528" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "20021" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4U0S8GdQ3efQXRNWCxn3pSLJdG/BI9YuaVjSGZm5OYo=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4528" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E38p/AuS9hU++iJQAtNkji0WvC4I6ELK5rSVVss4zD0=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.i69pn04yn8.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015928640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i69pn04yn8" + }, + { + "Name": "integrity", + "Value": "sha256-Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.i69pn04yn8.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "369325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i69pn04yn8" + }, + { + "Name": "integrity", + "Value": "sha256-Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.i69pn04yn8.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i69pn04yn8" + }, + { + "Name": "integrity", + "Value": "sha256-G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015928640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "369325" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rs7Y0cBeqx7icqenWHEkPIGYzQBN1sBE1OnHAuOS7L4=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "62779" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G6/vcjkVfjG/nIZWelFpxQfxq4wGZilVI4cLhTC3h7I=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043654778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.wry6lkzr4q.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043654778" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wry6lkzr4q" + }, + { + "Name": "integrity", + "Value": "sha256-jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.wry6lkzr4q.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wry6lkzr4q" + }, + { + "Name": "integrity", + "Value": "sha256-jOqfeK7rrAEwsSulqkdtsdFQw7vCoTIFir8H/NmevNQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.wry6lkzr4q.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wry6lkzr4q" + }, + { + "Name": "integrity", + "Value": "sha256-tGBveJp1sZpOueQrQ/UMYncnojaKX/1ycFBVkQsY5Gs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018098565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "323590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000051773233" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "42614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.qyl06g05cg.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000051773233" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyl06g05cg" + }, + { + "Name": "integrity", + "Value": "sha256-MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.qyl06g05cg.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "42614" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyl06g05cg" + }, + { + "Name": "integrity", + "Value": "sha256-MrVHwkjrAvlhW/jiHYx1fPWBB4CrmTVpTZbAsAq3HE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.qyl06g05cg.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19314" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyl06g05cg" + }, + { + "Name": "integrity", + "Value": "sha256-8wnyKpCEv6WSGWK+ErOXifPFlhMAYc43/3W0VqCYifw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.thp15whr2y.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018098565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "thp15whr2y" + }, + { + "Name": "integrity", + "Value": "sha256-UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.thp15whr2y.js", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "323590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "thp15whr2y" + }, + { + "Name": "integrity", + "Value": "sha256-UaygIPN4MyE6/gx1mgxN/VJZg/sbbo6xIzpHs4P6bEc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js" + } + ] + }, + { + "Route": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.thp15whr2y.js.gz", + "AssetFile": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "thp15whr2y" + }, + { + "Name": "integrity", + "Value": "sha256-m4uwjTnpyGmhSrGaTQuS9J43AyvdM2iUIe1QUD/tZnk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.7i6l6aphdh.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000160720026" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7i6l6aphdh" + }, + { + "Name": "integrity", + "Value": "sha256-LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.js" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.7i6l6aphdh.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "27631" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7i6l6aphdh" + }, + { + "Name": "integrity", + "Value": "sha256-LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.js" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.7i6l6aphdh.js.gz", + "AssetFile": "adminlte/plugins/pace-progress/pace.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7i6l6aphdh" + }, + { + "Name": "integrity", + "Value": "sha256-K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000160720026" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "27631" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LxKfwpwbV9YstJpcA5JhkwYkQHObBjZJfGxNRPJAcio=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.js.gz", + "AssetFile": "adminlte/plugins/pace-progress/pace.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6221" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K1T+a8EcEzn014MU/qa0VDesSRZmMEaz6mL4FaE5Q0g=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.8265woqc2v.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000233918129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8265woqc2v" + }, + { + "Name": "integrity", + "Value": "sha256-8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.8265woqc2v.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8265woqc2v" + }, + { + "Name": "integrity", + "Value": "sha256-8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.8265woqc2v.js.gz", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8265woqc2v" + }, + { + "Name": "integrity", + "Value": "sha256-ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/pace.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000233918129" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.js", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12605" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8M2XRlV/pUENu5d23KzUagRahwSKhCsamcCPD2PjzDs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/pace.min.js.gz", + "AssetFile": "adminlte/plugins/pace-progress/pace.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4274" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ddTmh/xYB9kN5PCztnjzne7Z8vYsceAm4m7nGfUizxk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.1g4o761mx7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g4o761mx7" + }, + { + "Name": "integrity", + "Value": "sha256-fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.1g4o761mx7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g4o761mx7" + }, + { + "Name": "integrity", + "Value": "sha256-fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.1g4o761mx7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1g4o761mx7" + }, + { + "Name": "integrity", + "Value": "sha256-tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fwQmqm+fYCrbdekghoUdRbqflJ/WJtbAxQ8Qkz6dzO8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tBn+vkCxP8BX7CMQJgUjlda0Ff1jAeJfJCymzsxdSxU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002433090024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "410" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "410" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.r9ns05kg22.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002433090024" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "410" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9ns05kg22" + }, + { + "Name": "integrity", + "Value": "sha256-z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.r9ns05kg22.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "912" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9ns05kg22" + }, + { + "Name": "integrity", + "Value": "sha256-z9gEAiF2HYAxHxa2Y/Bxywhx5KjDpbUtL/XAMhHl6Rs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.r9ns05kg22.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "410" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r9ns05kg22" + }, + { + "Name": "integrity", + "Value": "sha256-YToaHww3hspaiZugFbGDEp+y3ZvCogxCkTwhh4PMP+w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.430rtqkn9n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "430rtqkn9n" + }, + { + "Name": "integrity", + "Value": "sha256-0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.430rtqkn9n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "430rtqkn9n" + }, + { + "Name": "integrity", + "Value": "sha256-0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.430rtqkn9n.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "430rtqkn9n" + }, + { + "Name": "integrity", + "Value": "sha256-2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0OHmAnFrnCL+5f9pZBJu1sI+q80VNKGRxeQgnUPkGVg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2s7gzbki1F6wtQWP/AhDwMH+m62pf9ziZpK2BWgyGK4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001362397820" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "733" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "733" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.e9a7g7nuvv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001362397820" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "733" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e9a7g7nuvv" + }, + { + "Name": "integrity", + "Value": "sha256-sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.e9a7g7nuvv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e9a7g7nuvv" + }, + { + "Name": "integrity", + "Value": "sha256-sqtK/C7xSPoaE+k+0dwIhds/JG+x41fpyX4w6P9DQzg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.e9a7g7nuvv.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "733" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e9a7g7nuvv" + }, + { + "Name": "integrity", + "Value": "sha256-hnB2xdzxyCvSYz9LKRKgLRWFynciJW7eAoOrIeHOiBs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.99v15xyb0b.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "99v15xyb0b" + }, + { + "Name": "integrity", + "Value": "sha256-fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.99v15xyb0b.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "99v15xyb0b" + }, + { + "Name": "integrity", + "Value": "sha256-fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.99v15xyb0b.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "99v15xyb0b" + }, + { + "Name": "integrity", + "Value": "sha256-54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001574803150" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2271" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fX15/Eq7pPhX4ju3qdsUqtLW+DRnq3Fw5xCoje5G3gU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "634" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-54UhKt9Gngm5fl3p0EDzgJvNE0wo5UK9Ip7zHyhjxjw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.x2x55cy07o.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x2x55cy07o" + }, + { + "Name": "integrity", + "Value": "sha256-R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.x2x55cy07o.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x2x55cy07o" + }, + { + "Name": "integrity", + "Value": "sha256-R9RktYEA26m6GhhA07/1Egl3oxjH90+sE31wq6C0KvU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.x2x55cy07o.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x2x55cy07o" + }, + { + "Name": "integrity", + "Value": "sha256-3HHoKUYYefp1gV0xb8B9Dz9c4729394KqaUrsgLvTC8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.05na8ps389.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002403846154" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "05na8ps389" + }, + { + "Name": "integrity", + "Value": "sha256-pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.05na8ps389.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "05na8ps389" + }, + { + "Name": "integrity", + "Value": "sha256-pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.05na8ps389.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "05na8ps389" + }, + { + "Name": "integrity", + "Value": "sha256-UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002403846154" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pB+74BySThpPxsnJrHYICub0iRipMDI6ljWyjG9btCQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "415" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UfUl0+6yev+z9tNAdFIC7ASXgrKNCVvSEHpteLPIcYU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.tvv5spkm0g.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001626016260" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvv5spkm0g" + }, + { + "Name": "integrity", + "Value": "sha256-V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.tvv5spkm0g.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvv5spkm0g" + }, + { + "Name": "integrity", + "Value": "sha256-V2+NRKg15nzcVtQQocKRKE9U16k7F3NmzAShpqiXqc8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.tvv5spkm0g.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "614" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tvv5spkm0g" + }, + { + "Name": "integrity", + "Value": "sha256-Bi3eICmb8TgaA1zvjR6fNR8L/2H+PBxMgdSio2AVGBQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.binacksyei.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003703703704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "269" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "binacksyei" + }, + { + "Name": "integrity", + "Value": "sha256-gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.binacksyei.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "binacksyei" + }, + { + "Name": "integrity", + "Value": "sha256-gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.binacksyei.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "269" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "binacksyei" + }, + { + "Name": "integrity", + "Value": "sha256-czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003703703704" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "269" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gzHAubtQnoVsdC/YbLnMpuuw8x4E242tILgiKvIFssg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "269" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-czcrZOw94mIaSYLH8xIj4KAY4JTnL9FQZ+wuy/s12r0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001748251748" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.qrvg32hniu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001748251748" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qrvg32hniu" + }, + { + "Name": "integrity", + "Value": "sha256-KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.qrvg32hniu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qrvg32hniu" + }, + { + "Name": "integrity", + "Value": "sha256-KgAQ68q43G+BxTftmq7S+P0QWYGJRJ0B8ZTu+Bllq+U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.qrvg32hniu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "571" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qrvg32hniu" + }, + { + "Name": "integrity", + "Value": "sha256-M8nK8DAC3/XSxWW0paF++oyJd3Qo176rKAXgJiheIFU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.jbe9s87e3z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbe9s87e3z" + }, + { + "Name": "integrity", + "Value": "sha256-QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.jbe9s87e3z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbe9s87e3z" + }, + { + "Name": "integrity", + "Value": "sha256-QaNmdUV7j4TBITnDp1Yavy1NPw56+3NePZxDgBsMS90=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.jbe9s87e3z.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jbe9s87e3z" + }, + { + "Name": "integrity", + "Value": "sha256-Q8jrhYX7uR+I0gLNfTTsTtEO+fJy7+qfWfXwUg20VSY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.5s46x5tgkb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683060109" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1463" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5s46x5tgkb" + }, + { + "Name": "integrity", + "Value": "sha256-tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.5s46x5tgkb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5s46x5tgkb" + }, + { + "Name": "integrity", + "Value": "sha256-tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.5s46x5tgkb.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1463" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5s46x5tgkb" + }, + { + "Name": "integrity", + "Value": "sha256-+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683060109" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1463" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tSLwLVFN7TIRyFo/WiOvIPQLniCWhiTUCkK1J1yxpE0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1463" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+Ms/AGMXubceWkNkax9xu7DyS4fOgNtjU7BNfeL+5CQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.bm9p9nrilu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001572327044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bm9p9nrilu" + }, + { + "Name": "integrity", + "Value": "sha256-DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.bm9p9nrilu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bm9p9nrilu" + }, + { + "Name": "integrity", + "Value": "sha256-DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.bm9p9nrilu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bm9p9nrilu" + }, + { + "Name": "integrity", + "Value": "sha256-VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001572327044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DW6u3bQfpyqTVrmUECDEx4GcD/+uWIgQFQuGRsrwRwk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VPkzg++LLDE7iDNfPGYglWs0uq9R85TTeXZnOeX+DDM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306466442" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.iz7ar6cnb5.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306466442" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz7ar6cnb5" + }, + { + "Name": "integrity", + "Value": "sha256-EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.iz7ar6cnb5.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz7ar6cnb5" + }, + { + "Name": "integrity", + "Value": "sha256-EmaJ8yI70XaSGKlHjuCWDnUGTBor3IenZXKs8ovDT8Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.iz7ar6cnb5.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3262" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iz7ar6cnb5" + }, + { + "Name": "integrity", + "Value": "sha256-6OgOWioY4/7lM3JHBfnEkE3ypFHeSjEdJj7xHOq7C4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.fnewr6lvdp.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003921568627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=\"" + }, + { + "Name": "ETag", + "Value": "W/\"K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnewr6lvdp" + }, + { + "Name": "integrity", + "Value": "sha256-K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.fnewr6lvdp.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnewr6lvdp" + }, + { + "Name": "integrity", + "Value": "sha256-K/UxRmwN3AZWlp0UtfXEcsq3uDDWYuIE3iSkGHKxVes=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.fnewr6lvdp.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "254" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fnewr6lvdp" + }, + { + "Name": "integrity", + "Value": "sha256-338HaJgzo4K4x1GIgAIDWTfGAMv0DalfsZ8anNM/+ck=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.eh50rbtfsj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eh50rbtfsj" + }, + { + "Name": "integrity", + "Value": "sha256-wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.eh50rbtfsj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eh50rbtfsj" + }, + { + "Name": "integrity", + "Value": "sha256-wrIbkGHzlQ5sLCSPaU6/02VLLGtjz4Ljf1xQ/wamCx4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.eh50rbtfsj.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eh50rbtfsj" + }, + { + "Name": "integrity", + "Value": "sha256-AmNn6TMbe0wH4sl7zUD/k9zsdmVAgaJ9bwJkNf/qgqA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.x49u4k8hff.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x49u4k8hff" + }, + { + "Name": "integrity", + "Value": "sha256-P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.x49u4k8hff.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x49u4k8hff" + }, + { + "Name": "integrity", + "Value": "sha256-P2I5mMznPD/VFvULUFeAHdx+GOOGYDZ+JOFdXsWo8A0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.x49u4k8hff.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x49u4k8hff" + }, + { + "Name": "integrity", + "Value": "sha256-VX9SiYfi878D35UxQYGZWouz/JmixnQx7U0WoEp7XeU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.fq22iaz3v5.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq22iaz3v5" + }, + { + "Name": "integrity", + "Value": "sha256-VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.fq22iaz3v5.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq22iaz3v5" + }, + { + "Name": "integrity", + "Value": "sha256-VySmIHzoKxIkKOGKlewejp8Q2xqwmnS7aLidM7lnzIw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.fq22iaz3v5.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq22iaz3v5" + }, + { + "Name": "integrity", + "Value": "sha256-LlHfIAfCEkDcguZVAgqBxVirpzQDUvwk1WmPFWu1iCQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.0l7p102ndw.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0l7p102ndw" + }, + { + "Name": "integrity", + "Value": "sha256-XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.0l7p102ndw.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0l7p102ndw" + }, + { + "Name": "integrity", + "Value": "sha256-XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.0l7p102ndw.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0l7p102ndw" + }, + { + "Name": "integrity", + "Value": "sha256-uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XIyRESsy20zv9CtWU5URisg20Huvr/ip1Jbgw4c0xqQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uw4CZMUBQ2L9UiUXJvzRXZHgCqE/CZkSwPCExvMNWMw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.y8t5qu2ff4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y8t5qu2ff4" + }, + { + "Name": "integrity", + "Value": "sha256-UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.y8t5qu2ff4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y8t5qu2ff4" + }, + { + "Name": "integrity", + "Value": "sha256-UpUwzvSBuQ1eYxU5mfmS9PlvbTVmzDeggDb4HdCVbrk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.y8t5qu2ff4.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y8t5qu2ff4" + }, + { + "Name": "integrity", + "Value": "sha256-SkFvurUPFuTah6m+M6FopOehdxBYylJcbdS27FkqVhs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.olgbxqei5c.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olgbxqei5c" + }, + { + "Name": "integrity", + "Value": "sha256-NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.olgbxqei5c.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olgbxqei5c" + }, + { + "Name": "integrity", + "Value": "sha256-NA49oDxZ5WLJD3E3FwdCxXQ9Ke1KTR/gWf1Acw5PYTo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.olgbxqei5c.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "olgbxqei5c" + }, + { + "Name": "integrity", + "Value": "sha256-aDdomCGO2ho8IDD529pL9WYiGE9Iudfd962Heh2C8oU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.5qstf2125h.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qstf2125h" + }, + { + "Name": "integrity", + "Value": "sha256-U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.5qstf2125h.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qstf2125h" + }, + { + "Name": "integrity", + "Value": "sha256-U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.5qstf2125h.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qstf2125h" + }, + { + "Name": "integrity", + "Value": "sha256-x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U4KAoAnr1uyjl9KyMJE41kzp2+feWnoKT8AQYHq1f2E=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x0VwrIuSit4qTET/aJDnfL2FtUc2oV/8441Mhj8hBgw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.smib456psm.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "smib456psm" + }, + { + "Name": "integrity", + "Value": "sha256-FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.smib456psm.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "smib456psm" + }, + { + "Name": "integrity", + "Value": "sha256-FIsmdz0tI6hFzxN9hmi96yeMIfuG+gA3tIgJcMCl3S4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.smib456psm.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "smib456psm" + }, + { + "Name": "integrity", + "Value": "sha256-90bsnUdr6yNwYmrvxw4a87aVfxBv4l1/kDeY/gnJJDM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.m6v1vok2pt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m6v1vok2pt" + }, + { + "Name": "integrity", + "Value": "sha256-4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.m6v1vok2pt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m6v1vok2pt" + }, + { + "Name": "integrity", + "Value": "sha256-4gyeWAKPmqatQEO//ltI8S+u3pImQTiwBxDNeuq44kE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.m6v1vok2pt.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m6v1vok2pt" + }, + { + "Name": "integrity", + "Value": "sha256-8PS85YZ1jGRKhy5WK+LDmS7EAOTltOhlCPj+yOR7efY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.yoxgs06w6l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yoxgs06w6l" + }, + { + "Name": "integrity", + "Value": "sha256-bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.yoxgs06w6l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yoxgs06w6l" + }, + { + "Name": "integrity", + "Value": "sha256-bvWJewHC2f+PeQsWxK7B7RZrgARMOiCHPP8OKwrYfiA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.yoxgs06w6l.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yoxgs06w6l" + }, + { + "Name": "integrity", + "Value": "sha256-rbPnnxw8X1dgzQgU4fDooUE7Dz5GWDM91wPPymhesjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.b5uec31taw.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5uec31taw" + }, + { + "Name": "integrity", + "Value": "sha256-4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.b5uec31taw.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5uec31taw" + }, + { + "Name": "integrity", + "Value": "sha256-4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.b5uec31taw.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b5uec31taw" + }, + { + "Name": "integrity", + "Value": "sha256-v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4af71isNvXXokMVJ22FmeIpE7Fq9WGL1nuPv+3PVMAs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v13e7L+XsYSAjCojK17bMMzSSy7ivJn99BjwYB5R34Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682593857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.ezdbitp007.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682593857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ezdbitp007" + }, + { + "Name": "integrity", + "Value": "sha256-dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.ezdbitp007.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ezdbitp007" + }, + { + "Name": "integrity", + "Value": "sha256-dm5x4D6IYfvBLXalAamecb8aTLRn06EjZHNjmJyNllA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.ezdbitp007.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ezdbitp007" + }, + { + "Name": "integrity", + "Value": "sha256-Hf2ha6gGCFWQcUsz11xYVGCSdGQufzpX4vHUFai3s9g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.s3v692kvg3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s3v692kvg3" + }, + { + "Name": "integrity", + "Value": "sha256-+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.s3v692kvg3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s3v692kvg3" + }, + { + "Name": "integrity", + "Value": "sha256-+NMT25Rp5ZZ5gBzt67jwkf2dJ9hfNfvP3pWv9nvB8RE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.s3v692kvg3.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s3v692kvg3" + }, + { + "Name": "integrity", + "Value": "sha256-izSoeZ4mChH7JW0uA6fmbWq3cNJ77hQAzI4Iyp3rZb8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.tfbbf19b5a.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfbbf19b5a" + }, + { + "Name": "integrity", + "Value": "sha256-V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.tfbbf19b5a.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfbbf19b5a" + }, + { + "Name": "integrity", + "Value": "sha256-V447oNk9/mSDdHU0acHEPhp2Z/MwmsVKh6Km8fc+HC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.tfbbf19b5a.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tfbbf19b5a" + }, + { + "Name": "integrity", + "Value": "sha256-AeDEkGZPJMwSlvLR5HkJXrd+DWO8lrAfF3ua0f7LlXg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.i9vx5k7ido.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9vx5k7ido" + }, + { + "Name": "integrity", + "Value": "sha256-hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.i9vx5k7ido.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9vx5k7ido" + }, + { + "Name": "integrity", + "Value": "sha256-hgFElHDPamsjxKdNVSNXjRWHs6s3ZKdvZ4cG/KyvefE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.i9vx5k7ido.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i9vx5k7ido" + }, + { + "Name": "integrity", + "Value": "sha256-FGXA+u3qndcbkmt5oXif1/vhwsIP5SLHbiHSFpYnx/M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.ohd2868qz3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001506024096" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohd2868qz3" + }, + { + "Name": "integrity", + "Value": "sha256-NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.ohd2868qz3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohd2868qz3" + }, + { + "Name": "integrity", + "Value": "sha256-NG+neUIAZinu5bphwkIwZuN41d/BoXZesw182skbElk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.ohd2868qz3.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "663" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohd2868qz3" + }, + { + "Name": "integrity", + "Value": "sha256-Y74Y35Epeho87vt1L5NLTC9HQMpg9SsI+fZJaN/fp08=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.7szp0ihct7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7szp0ihct7" + }, + { + "Name": "integrity", + "Value": "sha256-meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.7szp0ihct7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7szp0ihct7" + }, + { + "Name": "integrity", + "Value": "sha256-meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.7szp0ihct7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7szp0ihct7" + }, + { + "Name": "integrity", + "Value": "sha256-SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-meZpZiNttLHlEgMRKVeKc6GXlpx6pZPIU5dPk3KH954=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SBOZ+yS7EhhMSHlMl5H78IslMAWNF9nzwsMtLAIVVyU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.oz2web8sfa.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oz2web8sfa" + }, + { + "Name": "integrity", + "Value": "sha256-3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.oz2web8sfa.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oz2web8sfa" + }, + { + "Name": "integrity", + "Value": "sha256-3M6u+oYwe73iJUNxd3FuiRW6tL0ZfOtwoz+9yHa16R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.oz2web8sfa.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oz2web8sfa" + }, + { + "Name": "integrity", + "Value": "sha256-XIL2gRLzSmPktPExLsfP+mlu+PnYtkBJOKMypS0blEI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.nl0bb1b6va.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nl0bb1b6va" + }, + { + "Name": "integrity", + "Value": "sha256-NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.nl0bb1b6va.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nl0bb1b6va" + }, + { + "Name": "integrity", + "Value": "sha256-NWnxhE9VH4H4bIFq3UpS8a89AjLl27c6hcKQlGTflGU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.nl0bb1b6va.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nl0bb1b6va" + }, + { + "Name": "integrity", + "Value": "sha256-lWXYybaTT7Pm0V+6u1RzGUfP7FhJ9YLWPKvYZpa1Wnk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.ohxani2spl.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohxani2spl" + }, + { + "Name": "integrity", + "Value": "sha256-DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.ohxani2spl.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohxani2spl" + }, + { + "Name": "integrity", + "Value": "sha256-DOfOh74LyWw63Ffq0rLiAaLSgNwghKmIzlo+men/rUM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.ohxani2spl.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohxani2spl" + }, + { + "Name": "integrity", + "Value": "sha256-nH1MUCzHZdrhu8vPUeMrYIUelcUOGO3NP4VJHk9emT0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.2ynyf1nz80.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ynyf1nz80" + }, + { + "Name": "integrity", + "Value": "sha256-uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.2ynyf1nz80.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ynyf1nz80" + }, + { + "Name": "integrity", + "Value": "sha256-uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.2ynyf1nz80.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2ynyf1nz80" + }, + { + "Name": "integrity", + "Value": "sha256-Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uvAo72l9o8cl2dTwIg9KIYMn72oCHU4nloTcMrZx8hI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Yu9pPdcpFnF7kSAKZOzRKzaw7W6qAEOWHHZXEy+3wkg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.ktp5peu65e.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktp5peu65e" + }, + { + "Name": "integrity", + "Value": "sha256-+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.ktp5peu65e.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktp5peu65e" + }, + { + "Name": "integrity", + "Value": "sha256-+CJgxSMTuWtBwjkQQygXJXxkBKfQlMNetFu/SVVYplk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.ktp5peu65e.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ktp5peu65e" + }, + { + "Name": "integrity", + "Value": "sha256-ZTHExoaqtvyPpyF9JwfHpth3odT2FwaazMFlKo0j7oI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.g6dbbo0dv2.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6dbbo0dv2" + }, + { + "Name": "integrity", + "Value": "sha256-eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.g6dbbo0dv2.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6dbbo0dv2" + }, + { + "Name": "integrity", + "Value": "sha256-eKJhV4Re7M85yYEI0CFJDv6CcuUuUV0eHrpKGEYDclc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.g6dbbo0dv2.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g6dbbo0dv2" + }, + { + "Name": "integrity", + "Value": "sha256-AGKhbU/zCOYm8INxUUbM5GGsQytG4U/epP/B4y/hbJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.elta7q4fvp.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elta7q4fvp" + }, + { + "Name": "integrity", + "Value": "sha256-UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.elta7q4fvp.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elta7q4fvp" + }, + { + "Name": "integrity", + "Value": "sha256-UsMktlZEJ2Uat2C7h3jJhebnITPw5fX8dox4HTVL/ek=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.elta7q4fvp.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "elta7q4fvp" + }, + { + "Name": "integrity", + "Value": "sha256-4pvSmt+I08GrS7P0wHJaY38+r7+Xf15rZ6ab4VlhBw8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001730103806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.xwwxccfa1f.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001730103806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xwwxccfa1f" + }, + { + "Name": "integrity", + "Value": "sha256-4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.xwwxccfa1f.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xwwxccfa1f" + }, + { + "Name": "integrity", + "Value": "sha256-4dDYkwzQxcsYe8X25KG0bc6HRPIJlXRPic4P4s3Nfsw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.xwwxccfa1f.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xwwxccfa1f" + }, + { + "Name": "integrity", + "Value": "sha256-Mz/Gk8BcXB/z/15xB+jphbOZ83inMEf56AjKgGu2kMA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.vk4o1jmavk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vk4o1jmavk" + }, + { + "Name": "integrity", + "Value": "sha256-0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.vk4o1jmavk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vk4o1jmavk" + }, + { + "Name": "integrity", + "Value": "sha256-0SXSoRORysHSA/PwLwS5rTMDVYwEDEZ+2CxLBI5sJgY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.vk4o1jmavk.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vk4o1jmavk" + }, + { + "Name": "integrity", + "Value": "sha256-5+okjn45hVkKmM0/dMRbQaOG9apyu7S8xoNbz+cmZxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.eexqg5udoz.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eexqg5udoz" + }, + { + "Name": "integrity", + "Value": "sha256-lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.eexqg5udoz.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eexqg5udoz" + }, + { + "Name": "integrity", + "Value": "sha256-lo8TROQs6s9Yf/NxdA39sw1FDxWV1nKhl1SEzapFhNs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.eexqg5udoz.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "eexqg5udoz" + }, + { + "Name": "integrity", + "Value": "sha256-wTKxUG4Pfmw/YV0z6nkqdxtoy6XQwVXbp7ZvBbXu7VA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.954rryv1qz.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "954rryv1qz" + }, + { + "Name": "integrity", + "Value": "sha256-Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.954rryv1qz.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "954rryv1qz" + }, + { + "Name": "integrity", + "Value": "sha256-Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.954rryv1qz.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "954rryv1qz" + }, + { + "Name": "integrity", + "Value": "sha256-bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q78na/DvuiPrnRujyvrkl0OHT4+M4zTBMbT0h9AojF8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bykAjEk/0KRyPn41UEOFaLH8JEdBDoFMkpUcFaE6J9s=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306184936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.x7a8qluuvx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306184936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x7a8qluuvx" + }, + { + "Name": "integrity", + "Value": "sha256-vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.x7a8qluuvx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x7a8qluuvx" + }, + { + "Name": "integrity", + "Value": "sha256-vROS9C38qgUQiUIJcPIFDfGBL/iQwA9LuZFkWfv5RYY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.x7a8qluuvx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x7a8qluuvx" + }, + { + "Name": "integrity", + "Value": "sha256-IjkvNMU+gej3OKV7tF7Z+OgUZjEvaqk5LEO3FdOLHnA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.humk4u9y4i.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "humk4u9y4i" + }, + { + "Name": "integrity", + "Value": "sha256-V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.humk4u9y4i.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "humk4u9y4i" + }, + { + "Name": "integrity", + "Value": "sha256-V4Mz7SPVQx6KKGBqSFu5w/efmk3pz9By0vRQfLumpgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.humk4u9y4i.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "humk4u9y4i" + }, + { + "Name": "integrity", + "Value": "sha256-HU8ZIhsGuK0l5QA4eI+zKXlnrnstpOkcdAqqx06d840=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.asdnaxbyju.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001510574018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asdnaxbyju" + }, + { + "Name": "integrity", + "Value": "sha256-drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.asdnaxbyju.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asdnaxbyju" + }, + { + "Name": "integrity", + "Value": "sha256-drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.asdnaxbyju.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "asdnaxbyju" + }, + { + "Name": "integrity", + "Value": "sha256-cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001510574018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drwqD3H2OjrO/+mBGyN9af0xlgmj0EfO6rwU72zQTms=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cFq4wmBcAQWxTiv3xZXOFlkwCLROYJ73S8BlKUTvExc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.5v6vk47cr9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6vk47cr9" + }, + { + "Name": "integrity", + "Value": "sha256-fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.5v6vk47cr9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6vk47cr9" + }, + { + "Name": "integrity", + "Value": "sha256-fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.5v6vk47cr9.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6vk47cr9" + }, + { + "Name": "integrity", + "Value": "sha256-z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fzf71mtSDz7EI4s5mZGTenV+K+tJDdyOLddPY7qXtC4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8HuThzCM2/xuGhqfW7bBc63AX0u7zxDxhUs5dDvGrw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.5ur7sbfgk0.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001257861635" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ur7sbfgk0" + }, + { + "Name": "integrity", + "Value": "sha256-rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.5ur7sbfgk0.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ur7sbfgk0" + }, + { + "Name": "integrity", + "Value": "sha256-rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.5ur7sbfgk0.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ur7sbfgk0" + }, + { + "Name": "integrity", + "Value": "sha256-u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001257861635" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rSBCS/h/g3U7cOCWgmFGTr9WgyHvHiO4urGS8x71IWE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u3BC4pIhmM3bhCMh4zDsM52pqmmYVBcfRT6eOmab5U8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.8e25gy8fee.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8e25gy8fee" + }, + { + "Name": "integrity", + "Value": "sha256-YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.8e25gy8fee.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8e25gy8fee" + }, + { + "Name": "integrity", + "Value": "sha256-YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.8e25gy8fee.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8e25gy8fee" + }, + { + "Name": "integrity", + "Value": "sha256-YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YLNbIqufaCwDqfhdFNEjcqDW8ash/4Hlpq5ypFbmBv4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YW/N+T6ilW89GImaqLr+M747OXbujsin9/3TEJoqjDs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.7gwjnwxnm6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001557632399" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7gwjnwxnm6" + }, + { + "Name": "integrity", + "Value": "sha256-B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.7gwjnwxnm6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7gwjnwxnm6" + }, + { + "Name": "integrity", + "Value": "sha256-B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.7gwjnwxnm6.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7gwjnwxnm6" + }, + { + "Name": "integrity", + "Value": "sha256-fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001557632399" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-B/KWLWykNgsVUyRMSmpZZ/Oxpg2fB5SixnhosZsIhX8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "641" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fSXSP66XkzGAl2gYtY4MsQzBKU3bWT06hB0bLRzRiX4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.343t8f0slt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "343t8f0slt" + }, + { + "Name": "integrity", + "Value": "sha256-A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.343t8f0slt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "343t8f0slt" + }, + { + "Name": "integrity", + "Value": "sha256-A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.343t8f0slt.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "343t8f0slt" + }, + { + "Name": "integrity", + "Value": "sha256-Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A1lpEF4M1DdorP65HYv1jphTI96mxx58wW10YEXn0yI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Wa0RFnw3erWVjcFkoGlyjL3ifKQkM5cqY7o1jXJKZV0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.zx5mg1c7ib.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zx5mg1c7ib" + }, + { + "Name": "integrity", + "Value": "sha256-aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.zx5mg1c7ib.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zx5mg1c7ib" + }, + { + "Name": "integrity", + "Value": "sha256-aQQFUQCBvr2pmdFSa2rvV+yTnBU1U/Qm/wBYIzbXcXw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.zx5mg1c7ib.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zx5mg1c7ib" + }, + { + "Name": "integrity", + "Value": "sha256-acnIhVbp1Dxj+7pZe1dEycWzwjG4ROEUz95ifXuO8xg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.helxktw8ty.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "helxktw8ty" + }, + { + "Name": "integrity", + "Value": "sha256-mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.helxktw8ty.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "helxktw8ty" + }, + { + "Name": "integrity", + "Value": "sha256-mRIGAfoozUdukiDL6jGrwMi+GWNnM6l2TNdlxVMDAWw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.helxktw8ty.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "helxktw8ty" + }, + { + "Name": "integrity", + "Value": "sha256-h3nK5kddV7wQtzSc9HqbIyUx/cHT58Su8X8d8E7jQKY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003584229391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.itrjgizwgu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003584229391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "itrjgizwgu" + }, + { + "Name": "integrity", + "Value": "sha256-ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.itrjgizwgu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "itrjgizwgu" + }, + { + "Name": "integrity", + "Value": "sha256-ltt2cagb/VAME2qudt+doXMnP4NGqAWVE9j6ZU540s0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.itrjgizwgu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "itrjgizwgu" + }, + { + "Name": "integrity", + "Value": "sha256-3lA2lR2g3W4YGivqNTDsdMtBuYi20MP2QxhhpilcRKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.9u6596xzmb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9u6596xzmb" + }, + { + "Name": "integrity", + "Value": "sha256-H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.9u6596xzmb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9u6596xzmb" + }, + { + "Name": "integrity", + "Value": "sha256-H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.9u6596xzmb.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9u6596xzmb" + }, + { + "Name": "integrity", + "Value": "sha256-wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H/0PadVk9lvDzAVo4fTzkF+PeGFpqs5cnzv3E5CVpMw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wfrGzVR7YaFC2b+QTFrnyUaYOf3OhFkAkpH1zsxQEEE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.43d8r5o863.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "43d8r5o863" + }, + { + "Name": "integrity", + "Value": "sha256-QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.43d8r5o863.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "43d8r5o863" + }, + { + "Name": "integrity", + "Value": "sha256-QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.43d8r5o863.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "43d8r5o863" + }, + { + "Name": "integrity", + "Value": "sha256-+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QKNMGi+a6OErU7TaigqAshl4rTfH1aYWxcsx4UX0d8c=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+V51gQMlexfVa6LufNtTqUprCEgqVw/1WLCtQRM7v7g=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.qyfik218lg.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyfik218lg" + }, + { + "Name": "integrity", + "Value": "sha256-Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.qyfik218lg.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyfik218lg" + }, + { + "Name": "integrity", + "Value": "sha256-Ug35Fj8nZZdZ94S/aVXaV7lJv/p2tYmS8g6pUbRW6QU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.qyfik218lg.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qyfik218lg" + }, + { + "Name": "integrity", + "Value": "sha256-4+o5DEnpPzVXyug/WvTAV/Nz7ovjmHmhBwIcGk9Z/Ic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.5nfic1wrvt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001545595054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5nfic1wrvt" + }, + { + "Name": "integrity", + "Value": "sha256-sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.5nfic1wrvt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5nfic1wrvt" + }, + { + "Name": "integrity", + "Value": "sha256-sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.5nfic1wrvt.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5nfic1wrvt" + }, + { + "Name": "integrity", + "Value": "sha256-99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001545595054" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sQ8BaoGSRw1DRGOKhsgbbj+s0Rdv7/UTtyVm2sz5UyQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "646" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-99bnsANG7d3deRLw3btF5yuu2ze323nXU5ZxIUDX89o=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.58lehhio3m.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58lehhio3m" + }, + { + "Name": "integrity", + "Value": "sha256-C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.58lehhio3m.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58lehhio3m" + }, + { + "Name": "integrity", + "Value": "sha256-C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.58lehhio3m.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "58lehhio3m" + }, + { + "Name": "integrity", + "Value": "sha256-Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C+gsW5J/lqymEoSyXuP8WMAdO1p0oz5HcJvtCSLBWcg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ga9MybNM7U8CeDcFThbxfPnxxVXWGTUxTJGok3iZ1U4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003816793893" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.mkmbf99o6v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003816793893" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mkmbf99o6v" + }, + { + "Name": "integrity", + "Value": "sha256-Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.mkmbf99o6v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mkmbf99o6v" + }, + { + "Name": "integrity", + "Value": "sha256-Bgr4/NFk6N4MCSgaLqqUDU549CugkyLS3kfhI8XxEzw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.mkmbf99o6v.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mkmbf99o6v" + }, + { + "Name": "integrity", + "Value": "sha256-8/0ssNlzbEQw67XLLYgKLHtvHDVGvlu/FkyjIhuuPAU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.ypdzixfcj4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypdzixfcj4" + }, + { + "Name": "integrity", + "Value": "sha256-Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.ypdzixfcj4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypdzixfcj4" + }, + { + "Name": "integrity", + "Value": "sha256-Npal1RrEgjoX/IDMEmFxRx5S0T/Qhu/TD795IC8mPe8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.ypdzixfcj4.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ypdzixfcj4" + }, + { + "Name": "integrity", + "Value": "sha256-8T1pfXTffkj+KJ7seARJVDzr734QcTkpN+aZT2Sau4w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.0d0p0lausm.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0d0p0lausm" + }, + { + "Name": "integrity", + "Value": "sha256-7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.0d0p0lausm.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0d0p0lausm" + }, + { + "Name": "integrity", + "Value": "sha256-7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.0d0p0lausm.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0d0p0lausm" + }, + { + "Name": "integrity", + "Value": "sha256-zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7J34lxPf0rDqMORkW0FdCrmlZ221BDNvD1r7tv+NEtk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zJc77Eg65IRlia4mmAvFjgcz+ZVk3nI1bylFIpX1FZM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.8w55fm4d5v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8w55fm4d5v" + }, + { + "Name": "integrity", + "Value": "sha256-GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.8w55fm4d5v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8w55fm4d5v" + }, + { + "Name": "integrity", + "Value": "sha256-GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.8w55fm4d5v.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8w55fm4d5v" + }, + { + "Name": "integrity", + "Value": "sha256-K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GLS0JmPBhSt+hcJNmIKtJOS08tnpMHUO/bOre2Tx9cA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K1lhfQHtKd4aAGyjQDJ3m0tXAXFrUxXnATxkSRHjitc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.x1fk9x08fe.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1fk9x08fe" + }, + { + "Name": "integrity", + "Value": "sha256-NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.x1fk9x08fe.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1fk9x08fe" + }, + { + "Name": "integrity", + "Value": "sha256-NVadqePkPcthXy8Z88vwYgdk3nnkcvFGeTFk217jP4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.x1fk9x08fe.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x1fk9x08fe" + }, + { + "Name": "integrity", + "Value": "sha256-syCUcfYDrl6xA4SIpOyasRNx/xj8i2cTvhtq0Mj0u0s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.gbd9z4wttv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbd9z4wttv" + }, + { + "Name": "integrity", + "Value": "sha256-rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.gbd9z4wttv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbd9z4wttv" + }, + { + "Name": "integrity", + "Value": "sha256-rH4qifrRQ1k6CKSvlneXM29BvWyOyl9Yasm3DI5dGDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.gbd9z4wttv.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbd9z4wttv" + }, + { + "Name": "integrity", + "Value": "sha256-8XH049Pk0GaM1/QG4dE4KKrxleYFhpLzj0hUUd0M5YM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.ru090woc4g.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru090woc4g" + }, + { + "Name": "integrity", + "Value": "sha256-bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.ru090woc4g.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru090woc4g" + }, + { + "Name": "integrity", + "Value": "sha256-bZOsAETG/8bJJxqm7a3/TrXhWg1+N9aXX8K4xY7xNbM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.ru090woc4g.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ru090woc4g" + }, + { + "Name": "integrity", + "Value": "sha256-u6IXlJNKKwE/dupXY1LSUmMEz0/UN3s1nLz9v0bcDFw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.kc6j8bbp1z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc6j8bbp1z" + }, + { + "Name": "integrity", + "Value": "sha256-5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.kc6j8bbp1z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc6j8bbp1z" + }, + { + "Name": "integrity", + "Value": "sha256-5KqGILdcvpALmL42rfLhjs9IXrNMufyC/VI5djuCYGA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.kc6j8bbp1z.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kc6j8bbp1z" + }, + { + "Name": "integrity", + "Value": "sha256-l9G8KcRwxc4SJoXkHQJ9UwNih3sD59lrGhTqgPMru4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.20tn27l2zh.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "20tn27l2zh" + }, + { + "Name": "integrity", + "Value": "sha256-bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.20tn27l2zh.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "20tn27l2zh" + }, + { + "Name": "integrity", + "Value": "sha256-bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.20tn27l2zh.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "20tn27l2zh" + }, + { + "Name": "integrity", + "Value": "sha256-JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bn/RUXxVAee6y349WOw0DL3VinkcKdG6mNUScBt/mhk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JEGX7xW/AV8/uNy5oyT8RhLMWw79QIKlFB/8xVFP2x0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003584229391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.ffy8nuq76j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003584229391" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ffy8nuq76j" + }, + { + "Name": "integrity", + "Value": "sha256-tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.ffy8nuq76j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ffy8nuq76j" + }, + { + "Name": "integrity", + "Value": "sha256-tZDPNJOWvanNfv58hwACplehMyvInTTMSM+o3S+rkmQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.ffy8nuq76j.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "278" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ffy8nuq76j" + }, + { + "Name": "integrity", + "Value": "sha256-hAMjh4nUgrq8/UboFYo31XhmttCho1Uw+0itUdfTAjQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.78kgwcpktu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78kgwcpktu" + }, + { + "Name": "integrity", + "Value": "sha256-ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.78kgwcpktu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78kgwcpktu" + }, + { + "Name": "integrity", + "Value": "sha256-ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.78kgwcpktu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "78kgwcpktu" + }, + { + "Name": "integrity", + "Value": "sha256-n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZyoapEdBRFtV8yJXAP0yUPZt5sm+nS/3HzSAhQmn8jI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/2Jgq2HXYkOR5p2WXFMozo9WQaKbtY+mRfPG6b5v6c=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.5h8w9tku46.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5h8w9tku46" + }, + { + "Name": "integrity", + "Value": "sha256-FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.5h8w9tku46.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5h8w9tku46" + }, + { + "Name": "integrity", + "Value": "sha256-FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.5h8w9tku46.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5h8w9tku46" + }, + { + "Name": "integrity", + "Value": "sha256-09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FxCJQRBkgQDmDY987t5AIESLNsEDAbX1Jvbm8eG+Q0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09qIZzMnGnJ0rxj6VryYCPgJ723yXSCzhFcSsLLToUI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.6p32vs9p3n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6p32vs9p3n" + }, + { + "Name": "integrity", + "Value": "sha256-Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.6p32vs9p3n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6p32vs9p3n" + }, + { + "Name": "integrity", + "Value": "sha256-Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.6p32vs9p3n.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6p32vs9p3n" + }, + { + "Name": "integrity", + "Value": "sha256-2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Or4Q8Qf/DDtKobqB5BmKC74VpQwM6jJqber/wAq2Nvk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2kwNtTxQlqqUD1H1FTOKeDO+YaS9japE7sLfyb3Q2IY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.e171lhlski.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e171lhlski" + }, + { + "Name": "integrity", + "Value": "sha256-Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.e171lhlski.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e171lhlski" + }, + { + "Name": "integrity", + "Value": "sha256-Hr0oDPi8URvAmaKw8E/X7xfztFVzwok93hqUtKxQ7BY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.e171lhlski.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e171lhlski" + }, + { + "Name": "integrity", + "Value": "sha256-i55EbQ7Lz5UcVS7xTIPz9JSLpSHjaCY9dSO42MYYylg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.wyvunw1szs.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyvunw1szs" + }, + { + "Name": "integrity", + "Value": "sha256-qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.wyvunw1szs.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyvunw1szs" + }, + { + "Name": "integrity", + "Value": "sha256-qPtG6fZyG2DAKi7jIz7aHSRQ9rFHKOqrrZN3+RMEgBA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.wyvunw1szs.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wyvunw1szs" + }, + { + "Name": "integrity", + "Value": "sha256-xfXo+3p+Y+fPFvoBon40s/zgtDmdz34Xo5ykEGzVE7Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.oka6yqdhex.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oka6yqdhex" + }, + { + "Name": "integrity", + "Value": "sha256-CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.oka6yqdhex.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oka6yqdhex" + }, + { + "Name": "integrity", + "Value": "sha256-CJWoqW/rZK1jmZJFfMvcPIz10mo00C2sllLDkW44+co=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.oka6yqdhex.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oka6yqdhex" + }, + { + "Name": "integrity", + "Value": "sha256-VFASwD+YQJ5t6wuXZyx+6hBsUhH8enbe6toSFZYS5Dg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.biky9njteu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "biky9njteu" + }, + { + "Name": "integrity", + "Value": "sha256-U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.biky9njteu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "biky9njteu" + }, + { + "Name": "integrity", + "Value": "sha256-U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.biky9njteu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "biky9njteu" + }, + { + "Name": "integrity", + "Value": "sha256-xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U3GF1NL6argQLukZWLLcm3n1vAwMoQ0SjC/yxCjS6Uk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xXYnN+mMuEcjcnTDodwewKtfvJwQmXQqnVkkE2Mwakg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.691af365kt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "691af365kt" + }, + { + "Name": "integrity", + "Value": "sha256-2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.691af365kt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "691af365kt" + }, + { + "Name": "integrity", + "Value": "sha256-2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.691af365kt.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "691af365kt" + }, + { + "Name": "integrity", + "Value": "sha256-+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2h9B1BnRdH4/gEHedjv6PgEz7PCvwllCd/eUFZoqA+Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+sQs562JW+hyMF1KUcmP/T9shDCUOYsf/Psa8HlkpZU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.bhkmyd62i3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bhkmyd62i3" + }, + { + "Name": "integrity", + "Value": "sha256-0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.bhkmyd62i3.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bhkmyd62i3" + }, + { + "Name": "integrity", + "Value": "sha256-0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.bhkmyd62i3.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bhkmyd62i3" + }, + { + "Name": "integrity", + "Value": "sha256-gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0VhpKJOL+bDuy6nIk6Jr9g3fo+p2g9JrjJzCAyxunFY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gVXHYPwSbyNboj6WR6CFKMlnIg1SnhH2hgY4pX3VLjU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.9exfkvjt5l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9exfkvjt5l" + }, + { + "Name": "integrity", + "Value": "sha256-0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.9exfkvjt5l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9exfkvjt5l" + }, + { + "Name": "integrity", + "Value": "sha256-0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.9exfkvjt5l.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9exfkvjt5l" + }, + { + "Name": "integrity", + "Value": "sha256-NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0TaqcpydgZI+BcSc897fJhNX9VNPIw73LVKNITVjSc0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NNeMRLTX4xrvjQ8K8ko8gadFzCYdzPGoP+JNcNbsus8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.ty11e9h10s.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ty11e9h10s" + }, + { + "Name": "integrity", + "Value": "sha256-NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.ty11e9h10s.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ty11e9h10s" + }, + { + "Name": "integrity", + "Value": "sha256-NaJlLB+p6AgngbZhMnjWs1CP0Pmg1LGjPcCan9JTlBg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.ty11e9h10s.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ty11e9h10s" + }, + { + "Name": "integrity", + "Value": "sha256-4uijKAkw/JZljLskDG/WWv0LmmqZQ7vYWxPtke9DZFc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.rqstohn14r.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqstohn14r" + }, + { + "Name": "integrity", + "Value": "sha256-PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.rqstohn14r.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqstohn14r" + }, + { + "Name": "integrity", + "Value": "sha256-PR0mVlxu0r6dSxfcH+QYbA+GY5mCQ69l3F2eaf+KzAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.rqstohn14r.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rqstohn14r" + }, + { + "Name": "integrity", + "Value": "sha256-eDqV2XG+iKYhIgafP11R8k8Y/T9Y7qe1d3JcKPETzfI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.dwxoejbs6b.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwxoejbs6b" + }, + { + "Name": "integrity", + "Value": "sha256-Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.dwxoejbs6b.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwxoejbs6b" + }, + { + "Name": "integrity", + "Value": "sha256-Y5S2jD34oZmeJ9PrmozxSIqh3KLXHgtWzwkjKf1idFI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.dwxoejbs6b.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dwxoejbs6b" + }, + { + "Name": "integrity", + "Value": "sha256-iW+W+1cgfChtTFmXxd+ekd8Mzl+mRFUzq5IMcPhl0Jw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.lxggcica3n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxggcica3n" + }, + { + "Name": "integrity", + "Value": "sha256-R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.lxggcica3n.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxggcica3n" + }, + { + "Name": "integrity", + "Value": "sha256-R/IOVK1P+RfmD48VFdghpkBi2mU1dfx7Go47ja1Ql7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.lxggcica3n.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lxggcica3n" + }, + { + "Name": "integrity", + "Value": "sha256-UhrQW7OUbLK5lcB9dMNR/V90oK5DsrD2I/aYFoy9Q2U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003597122302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.ov24lxh0r7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003597122302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ov24lxh0r7" + }, + { + "Name": "integrity", + "Value": "sha256-lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.ov24lxh0r7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ov24lxh0r7" + }, + { + "Name": "integrity", + "Value": "sha256-lFDDnMQ62AwNZTYljDH4+m8U4aU4zBTlsrAuISNFzUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.ov24lxh0r7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ov24lxh0r7" + }, + { + "Name": "integrity", + "Value": "sha256-0kgGM3vlKz5Nit/fChJ0rJTGFCRg+y+yAymh1CfOx7E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.efti4krxe6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efti4krxe6" + }, + { + "Name": "integrity", + "Value": "sha256-hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.efti4krxe6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efti4krxe6" + }, + { + "Name": "integrity", + "Value": "sha256-hlb0yGse1rKx4WVcITYi/KaxLLMaMSeq1tgRrw+RLmc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.efti4krxe6.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "efti4krxe6" + }, + { + "Name": "integrity", + "Value": "sha256-VXQRksWbMBz3Wj77ph7LV4RqCRMoCdj3jIK8Cb9YfHg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.4beplt01p7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4beplt01p7" + }, + { + "Name": "integrity", + "Value": "sha256-sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.4beplt01p7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4beplt01p7" + }, + { + "Name": "integrity", + "Value": "sha256-sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.4beplt01p7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4beplt01p7" + }, + { + "Name": "integrity", + "Value": "sha256-KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sB3E/6Fp/jgFylFB23kBPaGpPJXlubbP5kAsHC56BgA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KT4yxT2ybEU6dTfnB/Hh/qzsON53vcPSVAXKjltNv3I=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.8r9gke02lv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r9gke02lv" + }, + { + "Name": "integrity", + "Value": "sha256-nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.8r9gke02lv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r9gke02lv" + }, + { + "Name": "integrity", + "Value": "sha256-nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.8r9gke02lv.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8r9gke02lv" + }, + { + "Name": "integrity", + "Value": "sha256-5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nF6RNOGd/UjbVMl7eRc5Ee+4CMUgTUhX756ysHnVmk8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5dRbfHTbXBty7lwXp3wVqpIlLczdWoObT4e6h7E1n5U=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001547987616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.fzfe8r6day.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001547987616" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fzfe8r6day" + }, + { + "Name": "integrity", + "Value": "sha256-lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.fzfe8r6day.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fzfe8r6day" + }, + { + "Name": "integrity", + "Value": "sha256-lcNDRf1D+Zucs5xK0OcC81GyBOzFwKnYwdn1jLyvvGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.fzfe8r6day.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "645" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fzfe8r6day" + }, + { + "Name": "integrity", + "Value": "sha256-h5p5Ardlsu8FdXkgCJ67BhXGvZdJZwjIb3vDU2oGvyw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306091215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.iuksnu3gsr.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306091215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuksnu3gsr" + }, + { + "Name": "integrity", + "Value": "sha256-ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.iuksnu3gsr.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuksnu3gsr" + }, + { + "Name": "integrity", + "Value": "sha256-ijeKRVVFlasIqPuAnYHGgxWIu96tbnRmHfTYsdV3dDU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.iuksnu3gsr.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iuksnu3gsr" + }, + { + "Name": "integrity", + "Value": "sha256-4Pqz3w3kE/KEqUTPpgqr54FL7HFSq9zaEACCpMEXTMA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.hhgeydy9s7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003846153846" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hhgeydy9s7" + }, + { + "Name": "integrity", + "Value": "sha256-9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.hhgeydy9s7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hhgeydy9s7" + }, + { + "Name": "integrity", + "Value": "sha256-9WBk8MH2vqAsCuoE35yVw9yojLMjxvUYOYbHbVufOSE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.hhgeydy9s7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "259" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hhgeydy9s7" + }, + { + "Name": "integrity", + "Value": "sha256-6ZhPA6b7O3MlTYmfYD1+oLqsQiaBAYHUy1F8prAkxY8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.kllqmxo47j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001508295626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kllqmxo47j" + }, + { + "Name": "integrity", + "Value": "sha256-2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.kllqmxo47j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kllqmxo47j" + }, + { + "Name": "integrity", + "Value": "sha256-2Gl7QY/ANLkBbLg8UWssqE+5xJvuzn87akWiczaj/DI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.kllqmxo47j.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "662" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kllqmxo47j" + }, + { + "Name": "integrity", + "Value": "sha256-oqWwfDtFeSV+d9TOL74pbYdTMPR3KgzK+6Yo8+oHPEQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.64pnx18dai.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64pnx18dai" + }, + { + "Name": "integrity", + "Value": "sha256-5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.64pnx18dai.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "916" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64pnx18dai" + }, + { + "Name": "integrity", + "Value": "sha256-5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.64pnx18dai.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64pnx18dai" + }, + { + "Name": "integrity", + "Value": "sha256-74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002375296912" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "916" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5gNN6zat9SE5J2Ez06daqc8F++tH1L0a9TUvRQYgIU4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "420" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-74Vqnjx54SlbCjS40NLDu4I9bKigTo/ao7gTecUoSGw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.44mb2ora2s.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44mb2ora2s" + }, + { + "Name": "integrity", + "Value": "sha256-TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.44mb2ora2s.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44mb2ora2s" + }, + { + "Name": "integrity", + "Value": "sha256-TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.44mb2ora2s.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44mb2ora2s" + }, + { + "Name": "integrity", + "Value": "sha256-3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001256281407" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TOnNTOTDqOmSFnfNpuz8FCWKIOVXNAveeHHoElDdFkc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "795" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3aAfDMkl1XamII18OfOON9zTKlgHoT8I5FT4quuXbu8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.9hhf054ulj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hhf054ulj" + }, + { + "Name": "integrity", + "Value": "sha256-wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.9hhf054ulj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hhf054ulj" + }, + { + "Name": "integrity", + "Value": "sha256-wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.9hhf054ulj.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9hhf054ulj" + }, + { + "Name": "integrity", + "Value": "sha256-LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001356852103" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wwV3APeC0YSMChYpLl1Am1zaGGCZnbY2q1rCc0HP3Lc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "736" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LAZfN6cRRcHtZ4MqDF7TIzCDOgavfTv76sPU/wlaYrs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.ss93ue5uai.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001552795031" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ss93ue5uai" + }, + { + "Name": "integrity", + "Value": "sha256-pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.ss93ue5uai.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2275" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ss93ue5uai" + }, + { + "Name": "integrity", + "Value": "sha256-pAU/xb7jd/OX8JE3/tLWykXw7Ve9EzvTcZKpmtznqpA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.ss93ue5uai.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "643" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ss93ue5uai" + }, + { + "Name": "integrity", + "Value": "sha256-SgKT5wthuTBCZmhe/bb37miqa/FzByyX+rRvnd0r9zw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.2i5vk8j55t.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i5vk8j55t" + }, + { + "Name": "integrity", + "Value": "sha256-mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.2i5vk8j55t.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i5vk8j55t" + }, + { + "Name": "integrity", + "Value": "sha256-mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.2i5vk8j55t.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2i5vk8j55t" + }, + { + "Name": "integrity", + "Value": "sha256-sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mlEq5W0E/kEnq/5xUy6OfAv8AgXUEpPoiu2pq0c1Ois=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sS44dOtwk6UsKHb7zHoR7JoxqTS3dycguerodtzjDUM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.ip3ba5pq1o.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002386634845" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ip3ba5pq1o" + }, + { + "Name": "integrity", + "Value": "sha256-hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.ip3ba5pq1o.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ip3ba5pq1o" + }, + { + "Name": "integrity", + "Value": "sha256-hnVZpezHqt9WTpsWItlBEtSqGwbmyRLz7oTQ3tAK0So=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.ip3ba5pq1o.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "418" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ip3ba5pq1o" + }, + { + "Name": "integrity", + "Value": "sha256-YuU4Dq9SlMF8TjXXsiGQtTntJoRHdcWDBzgsXrvKgTo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.kfj2taz2fj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001620745543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfj2taz2fj" + }, + { + "Name": "integrity", + "Value": "sha256-INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.kfj2taz2fj.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfj2taz2fj" + }, + { + "Name": "integrity", + "Value": "sha256-INy18YB8PAnq5Bs8WeMlO1aaa/mAAQUkfHYgsWlohok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.kfj2taz2fj.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "616" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kfj2taz2fj" + }, + { + "Name": "integrity", + "Value": "sha256-HsyhgoBdB7i+BWDGoa8xSPRE6Enr/vZ0t/07fBiu3qU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "477" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.kctwtfv8lb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003571428571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kctwtfv8lb" + }, + { + "Name": "integrity", + "Value": "sha256-lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.kctwtfv8lb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "477" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kctwtfv8lb" + }, + { + "Name": "integrity", + "Value": "sha256-lCU0H1pwHCQRIJkSAtGIh+c4SGymPnycJrfboWx9iOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.kctwtfv8lb.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "279" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kctwtfv8lb" + }, + { + "Name": "integrity", + "Value": "sha256-c6yJu12sKzvm4s8Wrzr2JSkfWj1nkKLl3OWer6XYi9Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001730103806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.f53hw4rmri.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001730103806" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f53hw4rmri" + }, + { + "Name": "integrity", + "Value": "sha256-zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.f53hw4rmri.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f53hw4rmri" + }, + { + "Name": "integrity", + "Value": "sha256-zfWxqKrHXLe/BI2K1xPZpcKBekP2hfsChZsL39ddZfo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.f53hw4rmri.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "577" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f53hw4rmri" + }, + { + "Name": "integrity", + "Value": "sha256-+ZQnKNeBo+/MvW8I/ct+ywKQORtT+uGGG+WYED0irqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.5hsoepag47.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5hsoepag47" + }, + { + "Name": "integrity", + "Value": "sha256-1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.5hsoepag47.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5hsoepag47" + }, + { + "Name": "integrity", + "Value": "sha256-1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.5hsoepag47.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5hsoepag47" + }, + { + "Name": "integrity", + "Value": "sha256-c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002808988764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1+eSxIADOXT+cSYo6D8+Pu7oNSKcfoadVy3HO3ziYb4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "355" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c37WWTg4L7QSnASSufA9gThYZCSpRaAGDhK4Acu8t3o=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.8y5hl2p3le.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8y5hl2p3le" + }, + { + "Name": "integrity", + "Value": "sha256-oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.8y5hl2p3le.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8y5hl2p3le" + }, + { + "Name": "integrity", + "Value": "sha256-oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.8y5hl2p3le.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8y5hl2p3le" + }, + { + "Name": "integrity", + "Value": "sha256-cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oPqDr+e0d0672t1QtzxQCszzM5r0osvwZkWv1ZoO2WY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cALCjFXZHTF0p2m8sirVfH3Ou6RdheP5P3/BPg3vAEU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.brjezf06vo.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "brjezf06vo" + }, + { + "Name": "integrity", + "Value": "sha256-h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.brjezf06vo.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "brjezf06vo" + }, + { + "Name": "integrity", + "Value": "sha256-h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.brjezf06vo.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "brjezf06vo" + }, + { + "Name": "integrity", + "Value": "sha256-5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h3o/YoCIOx5cMBoBKa8OYIMExHVo36rcoKocVZ/yIjw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5kdA4x9+mBdtY1kLWjvDbLt7fwTdyrg2OHdbeR5xuq4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.bcp1hunczv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcp1hunczv" + }, + { + "Name": "integrity", + "Value": "sha256-i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.bcp1hunczv.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcp1hunczv" + }, + { + "Name": "integrity", + "Value": "sha256-i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.bcp1hunczv.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bcp1hunczv" + }, + { + "Name": "integrity", + "Value": "sha256-GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305997552" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i484hA59itp4/iWWChzW2ZKAGiUJUEcZrPvMznNEdfg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3267" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GF6RuZPvZagvXBQhkj42K97ucUQroLNi67RkPOylwcc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.7f8m7ww97w.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003816793893" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f8m7ww97w" + }, + { + "Name": "integrity", + "Value": "sha256-3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.7f8m7ww97w.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f8m7ww97w" + }, + { + "Name": "integrity", + "Value": "sha256-3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.7f8m7ww97w.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7f8m7ww97w" + }, + { + "Name": "integrity", + "Value": "sha256-IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003816793893" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3QTf1dZ6yHGyTSI8sh6XKg+n2zbZdzsTaS6EOWPC7RM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "261" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IsUV7P5VRwlc2/EEY3IWXAAysuJbafivBMT1EqRWctE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001510574018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.f09p88fd5v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001510574018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f09p88fd5v" + }, + { + "Name": "integrity", + "Value": "sha256-Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.f09p88fd5v.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f09p88fd5v" + }, + { + "Name": "integrity", + "Value": "sha256-Ia5vV1kvkivYAdLbrc3M3MD4kTk5mIMrVNE47Pmu0I0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.f09p88fd5v.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "661" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f09p88fd5v" + }, + { + "Name": "integrity", + "Value": "sha256-GCz7myhMi9E0J/rVixvOIdEDg9+sasX3UKe+spsvgIo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "918" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.q5rq5e9gu8.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5rq5e9gu8" + }, + { + "Name": "integrity", + "Value": "sha256-/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.q5rq5e9gu8.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "918" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5rq5e9gu8" + }, + { + "Name": "integrity", + "Value": "sha256-/rjBhEwso65O0Y7/Vf/oY2Q+0xdrRzISZZincykLZ6Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.q5rq5e9gu8.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q5rq5e9gu8" + }, + { + "Name": "integrity", + "Value": "sha256-DdpBGMZg0CIeEm8YWRXJ1tLgGU/mcutc5zhRtWsDZ4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001259445844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.lj6e0jui1x.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001259445844" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lj6e0jui1x" + }, + { + "Name": "integrity", + "Value": "sha256-oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.lj6e0jui1x.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lj6e0jui1x" + }, + { + "Name": "integrity", + "Value": "sha256-oaQtYl+a15xP5TWCbHZwV1ecaVbB5zsnDkp1BS4zMZA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.lj6e0jui1x.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "793" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lj6e0jui1x" + }, + { + "Name": "integrity", + "Value": "sha256-rLZpTXD9bae8nQ7hq0x1OblDLy07w0vlCf4qkuxOwjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.1d1q322h0q.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001360544218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "734" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1d1q322h0q" + }, + { + "Name": "integrity", + "Value": "sha256-ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.1d1q322h0q.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1d1q322h0q" + }, + { + "Name": "integrity", + "Value": "sha256-ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.1d1q322h0q.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "734" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1d1q322h0q" + }, + { + "Name": "integrity", + "Value": "sha256-ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001360544218" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "734" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZRS909nsDGlBCjbOGZsyg+gR8OBkVPrt1KTi0Jz9IJg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "734" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZHjyDsoqtjhRpDb4fF79K9hkhNvEdbGHlFGAV1PEEuk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.vtbelvzxy6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtbelvzxy6" + }, + { + "Name": "integrity", + "Value": "sha256-Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.vtbelvzxy6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtbelvzxy6" + }, + { + "Name": "integrity", + "Value": "sha256-Y7RtoCEcnLAgLEC4/WHN29Jk6xzVJSNx0mswelZHz9A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.vtbelvzxy6.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtbelvzxy6" + }, + { + "Name": "integrity", + "Value": "sha256-pIjAbD3nIJoyGJMX0sCD4HfuF+d/cD8jg2jd+sRCsCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.3guk0qf5qs.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3guk0qf5qs" + }, + { + "Name": "integrity", + "Value": "sha256-3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.3guk0qf5qs.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3guk0qf5qs" + }, + { + "Name": "integrity", + "Value": "sha256-3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.3guk0qf5qs.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3guk0qf5qs" + }, + { + "Name": "integrity", + "Value": "sha256-X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3VApbSXGknDyPUVS9KNHnXpDvBMMQF/8GKFrR+jV7SE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X04xRHXUEl6b5K1xnFEYe2p0YYCJ4uvNeTm7c+piqr0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.dh1t7imumq.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dh1t7imumq" + }, + { + "Name": "integrity", + "Value": "sha256-P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.dh1t7imumq.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dh1t7imumq" + }, + { + "Name": "integrity", + "Value": "sha256-P4Qjygn5pXXbK9hTdvvXAlRBmNBsVuWHF3p0UpoviNM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.dh1t7imumq.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dh1t7imumq" + }, + { + "Name": "integrity", + "Value": "sha256-uBSx4hR1Fz8DbqOdAXxlh2FmIud9EFnsqgTLhS4AEQw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.vmw9az89ph.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmw9az89ph" + }, + { + "Name": "integrity", + "Value": "sha256-d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.vmw9az89ph.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmw9az89ph" + }, + { + "Name": "integrity", + "Value": "sha256-d4MR5wrbHY5jppPkvfGdu+0xYHyWDLFQOWX8VpGUdB0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.vmw9az89ph.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vmw9az89ph" + }, + { + "Name": "integrity", + "Value": "sha256-yy5do9VN5AZmqBPyqER2U03bDmTbJzn6bX5u+xw32QU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "479" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.y4a66i9deu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y4a66i9deu" + }, + { + "Name": "integrity", + "Value": "sha256-0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.y4a66i9deu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "479" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y4a66i9deu" + }, + { + "Name": "integrity", + "Value": "sha256-0paE3kiONoxJBj5z+lcnaKgkKrj41tinO2Sk5ThrYs0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.y4a66i9deu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y4a66i9deu" + }, + { + "Name": "integrity", + "Value": "sha256-b/4I2xvbzVrr7uU4xHnB441dO9QNe+bBWlkcDYWSMdI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.uhfw0fsjam.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhfw0fsjam" + }, + { + "Name": "integrity", + "Value": "sha256-js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.uhfw0fsjam.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhfw0fsjam" + }, + { + "Name": "integrity", + "Value": "sha256-js1iNjJ/k+Dif7pZegblim/qLT5BVekru9li2Mnu5wM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.uhfw0fsjam.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uhfw0fsjam" + }, + { + "Name": "integrity", + "Value": "sha256-0QvcjkdQ7d8+/eGRK8Gy/WhUEyrXoRy6SrlmwZM1xrU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.jrnqq5sogk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jrnqq5sogk" + }, + { + "Name": "integrity", + "Value": "sha256-z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.jrnqq5sogk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jrnqq5sogk" + }, + { + "Name": "integrity", + "Value": "sha256-z0gOfYQvyGV1OT073tfRlj+xdPtOKIqN59Me4argVpE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.jrnqq5sogk.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jrnqq5sogk" + }, + { + "Name": "integrity", + "Value": "sha256-7T3tovYHu1Rrnwh5X8vtOXWQAZsRmXoIGwJ5PsMVGZ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682593857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.znak47o531.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682593857" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znak47o531" + }, + { + "Name": "integrity", + "Value": "sha256-/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.znak47o531.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znak47o531" + }, + { + "Name": "integrity", + "Value": "sha256-/zKXWRaRmlN8aQrUkkMSFkBLDDj5fWjqOJk8ZzAk64A=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.znak47o531.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1464" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "znak47o531" + }, + { + "Name": "integrity", + "Value": "sha256-gfUomCE0nGGUE5AYON7TflbR1/3eAv2QXc6U3iVMJRQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.udc4vqab7c.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001562500000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udc4vqab7c" + }, + { + "Name": "integrity", + "Value": "sha256-TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.udc4vqab7c.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udc4vqab7c" + }, + { + "Name": "integrity", + "Value": "sha256-TmGz8tTrS0L7rXNbe8cAsSr/z1jZUzTLHMXsW4+63As=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.udc4vqab7c.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "639" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "udc4vqab7c" + }, + { + "Name": "integrity", + "Value": "sha256-q9FtbxJVJKCJtxXWZjqXdrNpB5bxvqQIhgurMK2vw4Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306091215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.vcrdebd43z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306091215" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vcrdebd43z" + }, + { + "Name": "integrity", + "Value": "sha256-QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.vcrdebd43z.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vcrdebd43z" + }, + { + "Name": "integrity", + "Value": "sha256-QYrOD4WBRhOSRCT5AMLjiiltaxENxdkTsY8jutdcrtU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.vcrdebd43z.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vcrdebd43z" + }, + { + "Name": "integrity", + "Value": "sha256-OYKsXFgZKK5F3QQ5Dq67OWkI5hE0dQ0S5Fy6r966hqg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003861003861" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.fb39nhzccr.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003861003861" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fb39nhzccr" + }, + { + "Name": "integrity", + "Value": "sha256-CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.fb39nhzccr.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fb39nhzccr" + }, + { + "Name": "integrity", + "Value": "sha256-CwQrPJmHfckM2K2pd0sQTkKtCgYuRKILdPNnsYNVlUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.fb39nhzccr.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fb39nhzccr" + }, + { + "Name": "integrity", + "Value": "sha256-dNX3pv1ss5YXWniLC15A9Cfua2wRIHxu8V2pRCAdQk8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.v2v0luoc7a.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001515151515" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2v0luoc7a" + }, + { + "Name": "integrity", + "Value": "sha256-V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.v2v0luoc7a.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2v0luoc7a" + }, + { + "Name": "integrity", + "Value": "sha256-V4qtTz4j/hsoegwQipaa5xu2glkbIY0E9j9qaV2BbtQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.v2v0luoc7a.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "659" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v2v0luoc7a" + }, + { + "Name": "integrity", + "Value": "sha256-FmfM7Fd3v3F6RkXK0jPKzhxXfmeKdAiSujB8xHj1gPA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002415458937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "918" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.gcnr1ggfzb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002415458937" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gcnr1ggfzb" + }, + { + "Name": "integrity", + "Value": "sha256-8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.gcnr1ggfzb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "918" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gcnr1ggfzb" + }, + { + "Name": "integrity", + "Value": "sha256-8E+NpNW/CiFVQ2+wz5BqYUi7wLF2Chz1zrlb/wVs0VI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.gcnr1ggfzb.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gcnr1ggfzb" + }, + { + "Name": "integrity", + "Value": "sha256-Sh9A9NWMP6mjy4cbjCNOAEeBweTrMZ7Zgb+PBQMyLUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.2qz3emkwsq.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qz3emkwsq" + }, + { + "Name": "integrity", + "Value": "sha256-mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.2qz3emkwsq.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qz3emkwsq" + }, + { + "Name": "integrity", + "Value": "sha256-mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.2qz3emkwsq.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2qz3emkwsq" + }, + { + "Name": "integrity", + "Value": "sha256-VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001261034048" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mv086rCJFbA8IIxI9f4iierIsdJeKEdajj2z75QUxRA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "792" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VJ7RydLah6zENaZJwTFffp8yk794/TlkRSLRgGh8MOY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.9jdpd47qi9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001366120219" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jdpd47qi9" + }, + { + "Name": "integrity", + "Value": "sha256-xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.9jdpd47qi9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jdpd47qi9" + }, + { + "Name": "integrity", + "Value": "sha256-xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.9jdpd47qi9.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9jdpd47qi9" + }, + { + "Name": "integrity", + "Value": "sha256-2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001366120219" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xb3r8uM3zLs2vmtEn7PzudDoDg4rYc+yYUTVAQU8+Zs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "731" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2OszRaVJg6H0wUwaz1ENfKsYLd6ideUrZ4OjbTJAHC4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.prbasp09yi.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001567398119" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "prbasp09yi" + }, + { + "Name": "integrity", + "Value": "sha256-FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.prbasp09yi.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "prbasp09yi" + }, + { + "Name": "integrity", + "Value": "sha256-FTppBb1ws7gG+8ozmGjXXwoczDW4qVBzu22aFZ8NqAA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.prbasp09yi.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "637" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "prbasp09yi" + }, + { + "Name": "integrity", + "Value": "sha256-YUUYThMtAVnTGv4L8Vg5HPaduMMUTM4q+w0rzYq2/Qs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.ca7jegywp4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca7jegywp4" + }, + { + "Name": "integrity", + "Value": "sha256-XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.ca7jegywp4.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca7jegywp4" + }, + { + "Name": "integrity", + "Value": "sha256-XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.ca7jegywp4.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ca7jegywp4" + }, + { + "Name": "integrity", + "Value": "sha256-zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XCaQ2+yPNoa6/VfLYS33ba9MyXdH/p0aM66Fa6my+T4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zayjoL1wCFaynf0DJgeWuMsZUjSg3TEC//8fByTxWrc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.dshh1noa0f.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002409638554" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dshh1noa0f" + }, + { + "Name": "integrity", + "Value": "sha256-TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.dshh1noa0f.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dshh1noa0f" + }, + { + "Name": "integrity", + "Value": "sha256-TdEespXrIbB+M+YNEDZk6hWToP5bmeC5yCXUgadDYIM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.dshh1noa0f.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "414" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dshh1noa0f" + }, + { + "Name": "integrity", + "Value": "sha256-D08ogvJ6moZGuOgGDxb7Cp2j8IwYFgTYDYgjNwnxNo8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001631321370" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.fkogxer89m.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001631321370" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkogxer89m" + }, + { + "Name": "integrity", + "Value": "sha256-obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.fkogxer89m.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkogxer89m" + }, + { + "Name": "integrity", + "Value": "sha256-obanwHHosz3iPGwf0cZCvUOftdPc1YtTdlwNmeiHdyk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.fkogxer89m.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "612" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fkogxer89m" + }, + { + "Name": "integrity", + "Value": "sha256-g/WH7oXcVfLgVQH4jxXYyy/cvPsYsvlJ+sRfsj2NOIk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "479" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.dez9bs2ugd.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003649635036" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dez9bs2ugd" + }, + { + "Name": "integrity", + "Value": "sha256-dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.dez9bs2ugd.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "479" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dez9bs2ugd" + }, + { + "Name": "integrity", + "Value": "sha256-dZb4zh8NVSgyOV3SD1whW0kr5RMHv3LTrbhSyf1Bm28=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.dez9bs2ugd.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "273" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dez9bs2ugd" + }, + { + "Name": "integrity", + "Value": "sha256-NKcJUpcktemrsnnzgXjql4IPBOhFoD9JYfqgNJkpWxs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.sio0g6y9g9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001739130435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sio0g6y9g9" + }, + { + "Name": "integrity", + "Value": "sha256-3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.sio0g6y9g9.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sio0g6y9g9" + }, + { + "Name": "integrity", + "Value": "sha256-3DtB5o2TGfbTRv/Q8z2kj+8WObTtXLlmVjjrX1FCYc4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.sio0g6y9g9.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "574" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sio0g6y9g9" + }, + { + "Name": "integrity", + "Value": "sha256-qaTsiijaai5z6kuqOfhY6P6xGJMj6VP4mT+W8c156/k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.s4b7s6dxrh.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002832861190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4b7s6dxrh" + }, + { + "Name": "integrity", + "Value": "sha256-5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.s4b7s6dxrh.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4b7s6dxrh" + }, + { + "Name": "integrity", + "Value": "sha256-5Ec0M4uKdou9XoxdfkjWiVKLdT+TYE7/rlaJdMs9eBY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.s4b7s6dxrh.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "352" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s4b7s6dxrh" + }, + { + "Name": "integrity", + "Value": "sha256-h+f7nIIBHumrd+D6fJr25Rr9SZY7axLnWZEgH/e4ypw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683526999" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1462" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1462" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.dl2ari1q2r.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000683526999" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1462" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl2ari1q2r" + }, + { + "Name": "integrity", + "Value": "sha256-oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.dl2ari1q2r.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl2ari1q2r" + }, + { + "Name": "integrity", + "Value": "sha256-oT4qPuApNo0MrPoeq0h0LSW19/rF51qwJ5CdTgC8nzc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.dl2ari1q2r.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1462" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dl2ari1q2r" + }, + { + "Name": "integrity", + "Value": "sha256-3RUAPlQwhGC0IAYQU14fJiyR+U/tmwLbb1qvqEp6D0o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.gbcemx1n9d.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001564945227" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbcemx1n9d" + }, + { + "Name": "integrity", + "Value": "sha256-3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.gbcemx1n9d.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbcemx1n9d" + }, + { + "Name": "integrity", + "Value": "sha256-3P9QURxqiOJUmaR08de7LxpEChE+I5r6qt4Fw3tnfPo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.gbcemx1n9d.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "638" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gbcemx1n9d" + }, + { + "Name": "integrity", + "Value": "sha256-0d6Ula0Ytnkqy+Yy5Ye1grTg1BjzFnsccI4+sO2RVIg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306184936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.mfzgfren58.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000306184936" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfzgfren58" + }, + { + "Name": "integrity", + "Value": "sha256-YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.mfzgfren58.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfzgfren58" + }, + { + "Name": "integrity", + "Value": "sha256-YnJrZcV87ZsIUxk7w7QrjFb/GeyYUtevxfK1MQLUWN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.mfzgfren58.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3265" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mfzgfren58" + }, + { + "Name": "integrity", + "Value": "sha256-fZzIZ7lx6Tb3nWJt8Rm92biBtK+0pYN1UubStzepmgA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.3j1jwx0gsb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3j1jwx0gsb" + }, + { + "Name": "integrity", + "Value": "sha256-gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.3j1jwx0gsb.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3j1jwx0gsb" + }, + { + "Name": "integrity", + "Value": "sha256-gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.3j1jwx0gsb.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3j1jwx0gsb" + }, + { + "Name": "integrity", + "Value": "sha256-C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003891050584" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gS1jo9WLHDDTsxxH8LTX+tQgCPlWekz1EUFzsmI0rGs=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "256" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C+UNMCboTeEhfVzOLgNC16bghH+N/ZHZJS3oEYMcmOo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001512859304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.rb0tsuifz6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001512859304" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rb0tsuifz6" + }, + { + "Name": "integrity", + "Value": "sha256-GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.rb0tsuifz6.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3407" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rb0tsuifz6" + }, + { + "Name": "integrity", + "Value": "sha256-GaWO89MOh7GzM7xPEfeT95bwVnhCjS21rAI7ZeXpM5s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.rb0tsuifz6.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "660" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rb0tsuifz6" + }, + { + "Name": "integrity", + "Value": "sha256-rf6fc5Oih+zFqSAnErcqtOtMjzm9kqPS2WCPQNqOnAQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.gl1j2e5k9j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl1j2e5k9j" + }, + { + "Name": "integrity", + "Value": "sha256-LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.gl1j2e5k9j.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "917" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl1j2e5k9j" + }, + { + "Name": "integrity", + "Value": "sha256-LOd87inc0KO93PDI+lk9naSCzs/K6UlQvJRxQgdpNMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.gl1j2e5k9j.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gl1j2e5k9j" + }, + { + "Name": "integrity", + "Value": "sha256-XEYo6T9+KW8Qhw0AtB1IKBQef0Ha+0qNd4zlTgC15QY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001257861635" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.pblbzmcouc.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001257861635" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pblbzmcouc" + }, + { + "Name": "integrity", + "Value": "sha256-S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.pblbzmcouc.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5345" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pblbzmcouc" + }, + { + "Name": "integrity", + "Value": "sha256-S+SjRWHRpej3eT6f65SXvQ5WLI0WgV2KnbUtnpqBz7o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.pblbzmcouc.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "794" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pblbzmcouc" + }, + { + "Name": "integrity", + "Value": "sha256-G0oXR7frV+YOnl/2Z0AC7aIrRtBg0bL9bDyH2UNLqdc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.35c1hfbia7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35c1hfbia7" + }, + { + "Name": "integrity", + "Value": "sha256-t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.35c1hfbia7.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35c1hfbia7" + }, + { + "Name": "integrity", + "Value": "sha256-t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.35c1hfbia7.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35c1hfbia7" + }, + { + "Name": "integrity", + "Value": "sha256-Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001358695652" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2951" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t3BQh6EmZSNMgOKzd3yBDi9avqzmw84Ricfwe+127TU=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "735" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mkj44JQd0axrSV/mXKSPGsMmNopX5POtOVb6oLvxIE4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.hat8qtl3j0.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001555209953" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hat8qtl3j0" + }, + { + "Name": "integrity", + "Value": "sha256-SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.hat8qtl3j0.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hat8qtl3j0" + }, + { + "Name": "integrity", + "Value": "sha256-SURfpyjZviFAd7yae4PQDVP4lPQYlRCgl5UFL6RJ+f0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.hat8qtl3j0.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hat8qtl3j0" + }, + { + "Name": "integrity", + "Value": "sha256-6Vof3fTfQqYOpp0NOzfwM35i/trH9GKP6sqXIkPcu5w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.btxohujij8.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "btxohujij8" + }, + { + "Name": "integrity", + "Value": "sha256-0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.btxohujij8.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "btxohujij8" + }, + { + "Name": "integrity", + "Value": "sha256-0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.btxohujij8.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "btxohujij8" + }, + { + "Name": "integrity", + "Value": "sha256-dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001930501931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1705" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0aUZHciMM3ublCLYsl2hZKqxlNqEAbUkXWStwMzQFPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "517" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dPt0C1gbECRr6PwwfaRRRXPdL/nX+cwrr3vjdXa9K7k=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.sl0j7f26lt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sl0j7f26lt" + }, + { + "Name": "integrity", + "Value": "sha256-0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.sl0j7f26lt.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sl0j7f26lt" + }, + { + "Name": "integrity", + "Value": "sha256-0CzN50RhsWIHFc6qlIlbGM/Lvr5p4IZpszJspdvMwko=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.sl0j7f26lt.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sl0j7f26lt" + }, + { + "Name": "integrity", + "Value": "sha256-/Jkoed1EWKmiaaBo5Yx8mOsUV1br8Sh5fPgh3bj7CO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.fduvebhvrk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001623376623" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fduvebhvrk" + }, + { + "Name": "integrity", + "Value": "sha256-g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.fduvebhvrk.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2075" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fduvebhvrk" + }, + { + "Name": "integrity", + "Value": "sha256-g1UnMavXBq54ZgazX+cJ1I4BPvJKqrjs5yDmIYJ2SM0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.fduvebhvrk.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "615" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fduvebhvrk" + }, + { + "Name": "integrity", + "Value": "sha256-oyV5zf1xhNqSvXoFrlt8kUBnyoXtNG32TZkr1Cq+L1g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003597122302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.sk5r34v1nu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003597122302" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sk5r34v1nu" + }, + { + "Name": "integrity", + "Value": "sha256-/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.sk5r34v1nu.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sk5r34v1nu" + }, + { + "Name": "integrity", + "Value": "sha256-/PfaEf5nwM1PNHuol6yk5GaMqnhq0ruZYDLBJgzklOk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.sk5r34v1nu.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "277" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sk5r34v1nu" + }, + { + "Name": "integrity", + "Value": "sha256-8FUyqNjmnJhIa0uv9AssD9zF3AqjY2sgypctYeS79N8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.pq3df21c1l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001733102253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq3df21c1l" + }, + { + "Name": "integrity", + "Value": "sha256-z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.pq3df21c1l.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2282" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq3df21c1l" + }, + { + "Name": "integrity", + "Value": "sha256-z+ThOggga/GLz4DuepPVC4t/EYJEWdgkKlj4FLj1anM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.pq3df21c1l.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "576" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pq3df21c1l" + }, + { + "Name": "integrity", + "Value": "sha256-aFoJDqDAwhuYBFHoHmbaKm7JBAFRIUAfNM5r7lpI/u8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.5dew3h3mck.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dew3h3mck" + }, + { + "Name": "integrity", + "Value": "sha256-R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.5dew3h3mck.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dew3h3mck" + }, + { + "Name": "integrity", + "Value": "sha256-R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.5dew3h3mck.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5dew3h3mck" + }, + { + "Name": "integrity", + "Value": "sha256-NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002816901408" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R3gU7ePiy+2eH8OWjgQw+SsAtpApBC2A2M8kEFH5OJo=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "354" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NdZT3L/z9/m7wv1QOUUbBkIr+F7Jccc/UYkE9sXhhhQ=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.jthvzzs2ww.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000682128240" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jthvzzs2ww" + }, + { + "Name": "integrity", + "Value": "sha256-CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.jthvzzs2ww.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jthvzzs2ww" + }, + { + "Name": "integrity", + "Value": "sha256-CeURZaT0B5i1+9ObPqSbvuh2Dm24Yun6dKKEsx5YpzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.jthvzzs2ww.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1465" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jthvzzs2ww" + }, + { + "Name": "integrity", + "Value": "sha256-utO7e2EHv2K2G7QoPQ3BmRjC3miDFrXMuWxaR5hCQv4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.49mqt5gyjx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49mqt5gyjx" + }, + { + "Name": "integrity", + "Value": "sha256-KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.49mqt5gyjx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49mqt5gyjx" + }, + { + "Name": "integrity", + "Value": "sha256-KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.49mqt5gyjx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "49mqt5gyjx" + }, + { + "Name": "integrity", + "Value": "sha256-vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001550387597" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=\"" + }, + { + "Name": "ETag", + "Value": "W/\"KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3151" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KOTLbrovggUqgU7pbU3S8uy098N7mZTpz6gJRBELAqc=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "644" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vajS0jwumQ9KC2Tvo1Lho2s9i56vI/XJepz0PQ4Km40=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305903946" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.mvmxpoo4nl.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305903946" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvmxpoo4nl" + }, + { + "Name": "integrity", + "Value": "sha256-7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.mvmxpoo4nl.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35593" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvmxpoo4nl" + }, + { + "Name": "integrity", + "Value": "sha256-7nSagrECjw3IVtlHGBqvSF3SD6t8vS2eusfbncJ3EA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.mvmxpoo4nl.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3268" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mvmxpoo4nl" + }, + { + "Name": "integrity", + "Value": "sha256-uljpyQUM39HtNjaUwRYWzzVO/2r1PAjzyj3chzpsmUk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.35br9po70u.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003831417625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35br9po70u" + }, + { + "Name": "integrity", + "Value": "sha256-2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.35br9po70u.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35br9po70u" + }, + { + "Name": "integrity", + "Value": "sha256-2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.35br9po70u.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "35br9po70u" + }, + { + "Name": "integrity", + "Value": "sha256-Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003831417625" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "446" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2aGGT2bftvSfLE7E8WuBRNC0oM90x0aZ1qWWR5ViIYg=" + } + ] + }, + { + "Route": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz", + "AssetFile": "adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "260" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pa1ctEp79COpoLd2t6bpoGGhFT6P+/KLMUUtIVq4p+M=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.e8hg2qiiis.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001295785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771732" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e8hg2qiiis" + }, + { + "Name": "integrity", + "Value": "sha256-wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.e8hg2qiiis.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2784144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e8hg2qiiis" + }, + { + "Name": "integrity", + "Value": "sha256-wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.e8hg2qiiis.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771732" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e8hg2qiiis" + }, + { + "Name": "integrity", + "Value": "sha256-7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001295785" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771732" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2784144" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrqqKJW+0XTm8YMRxhzKkxss/oeL8Nd1GnVNTyNS0sA=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.7kkcgljm2t.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001334326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "749441" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kkcgljm2t" + }, + { + "Name": "integrity", + "Value": "sha256-6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.7kkcgljm2t.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3244117" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kkcgljm2t" + }, + { + "Name": "integrity", + "Value": "sha256-6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.7kkcgljm2t.map.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "749441" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7kkcgljm2t" + }, + { + "Name": "integrity", + "Value": "sha256-YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "771732" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7toQUgglvCs1NBv4NepZSlYsFrtn99WgHndgGmsimqw=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001334326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "749441" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3244117" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6dh/3BhXb7zYsrBQN7g5Vj8eDKHkQhQ+8InkX5dwc4c=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.js.map.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "749441" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YEzFOplPCr3qq5QiXdmFdV2HnSns6ZeCDe7qdZbAPFw=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.5v6y9z29v2.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001957208" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "510931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6y9z29v2" + }, + { + "Name": "integrity", + "Value": "sha256-vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.5v6y9z29v2.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1307285" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6y9z29v2" + }, + { + "Name": "integrity", + "Value": "sha256-vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.5v6y9z29v2.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "510931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v6y9z29v2" + }, + { + "Name": "integrity", + "Value": "sha256-VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000001957208" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "510931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1307285" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vzNnFIdTtj36Hk9Z0IKXzvgHK0eTNaewF6ijd7qevF4=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "510931" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VnIT9P+yMYvGKh35Z82mR6JxZRmbfrdzscalEzatqB4=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000000961282" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1040276" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3895295" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1040276" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.odx0sewq4l.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000000961282" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1040276" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odx0sewq4l" + }, + { + "Name": "integrity", + "Value": "sha256-BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.odx0sewq4l.map", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3895295" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odx0sewq4l" + }, + { + "Name": "integrity", + "Value": "sha256-BEPw7/Nf8KClx7homFf5z1cIGsqa9Lu8H0Z/+2Y1+W4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/pdfmake.min.js.odx0sewq4l.map.gz", + "AssetFile": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1040276" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "odx0sewq4l" + }, + { + "Name": "integrity", + "Value": "sha256-IHyuHoEWXKf8XNO+Wk1jZ2BJo4KhvTkaVk5OCh7Lg1k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/pdfmake.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.js", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002216848" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.js", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "926233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.o1osp6xxrh.js", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002216848" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1osp6xxrh" + }, + { + "Name": "integrity", + "Value": "sha256-vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/vfs_fonts.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.o1osp6xxrh.js", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "926233" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1osp6xxrh" + }, + { + "Name": "integrity", + "Value": "sha256-vEmrkqA2KrdjNo0/IWMNelI6jHuWAOkIJxGf88r4iic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/vfs_fonts.js" + } + ] + }, + { + "Route": "adminlte/plugins/pdfmake/vfs_fonts.o1osp6xxrh.js.gz", + "AssetFile": "adminlte/plugins/pdfmake/vfs_fonts.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "451090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o1osp6xxrh" + }, + { + "Name": "integrity", + "Value": "sha256-ZCESXadhsLbLL3CEBL4kgzayZGih8lqjNHAJfsOCuyk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/pdfmake/vfs_fonts.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000105285323" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "36679" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.idii5le9l1.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056303136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17760" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idii5le9l1" + }, + { + "Name": "integrity", + "Value": "sha256-hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.idii5le9l1.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "61746" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idii5le9l1" + }, + { + "Name": "integrity", + "Value": "sha256-hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.idii5le9l1.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17760" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "idii5le9l1" + }, + { + "Name": "integrity", + "Value": "sha256-F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056303136" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17760" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "61746" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hubYKh0iANlGv35JMONpk/ppeH9hpPbt53z9TSO/QzQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.js.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17760" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-F7DqRYAKLwgh/ebZVNGuHUjrtWfcR3CkH9c0DTGUZbI=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000241312741" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.evbhz7x31a.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064288010" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15554" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evbhz7x31a" + }, + { + "Name": "integrity", + "Value": "sha256-plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.evbhz7x31a.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53959" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evbhz7x31a" + }, + { + "Name": "integrity", + "Value": "sha256-plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.evbhz7x31a.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15554" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "evbhz7x31a" + }, + { + "Name": "integrity", + "Value": "sha256-wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064288010" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15554" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53959" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-plqTB1He/z+0xUmfLF25p3FGyardnkA1oWvDvJQHc04=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15554" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wxny67jT/OD9UpZDBDEwi3f7jOCKq73J4f56jv+Enuc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.vnx6put9sz.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000241312741" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vnx6put9sz" + }, + { + "Name": "integrity", + "Value": "sha256-6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.vnx6put9sz.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10659" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vnx6put9sz" + }, + { + "Name": "integrity", + "Value": "sha256-6/CBDoLSln1zWSKoQ+ZX4mFxEAL06z0OMk1UBAkvHoc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.min.vnx6put9sz.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4143" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vnx6put9sz" + }, + { + "Name": "integrity", + "Value": "sha256-aQHuxeFkbdbdt1xRXZlcv2P6Ggp+5QdJOe2QWzhK7GY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.t8t3bwrz9x.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000105285323" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8t3bwrz9x" + }, + { + "Name": "integrity", + "Value": "sha256-M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.t8t3bwrz9x.js", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "36679" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8t3bwrz9x" + }, + { + "Name": "integrity", + "Value": "sha256-M25YX4Tb4oml8mJ+QmIsQMaWTrWu6SCj0ABkUraXKDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper-utils.t8t3bwrz9x.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9497" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t8t3bwrz9x" + }, + { + "Name": "integrity", + "Value": "sha256-Y43LJHshdASA7UMy4wjeWr1+mwcon6OAO5XlfalgZcI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper-utils.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.1u6ye34jgi.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044060627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1u6ye34jgi" + }, + { + "Name": "integrity", + "Value": "sha256-GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.1u6ye34jgi.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "91098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1u6ye34jgi" + }, + { + "Name": "integrity", + "Value": "sha256-GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.1u6ye34jgi.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1u6ye34jgi" + }, + { + "Name": "integrity", + "Value": "sha256-f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044060627" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "91098" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GRHCi5HjPCoNAz71v0wZFOXnzH9+hSpA5vVM+6iIMZ0=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22695" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f+/ZhfYrSl49ddMwrLidjpXfe6fTnfUHyOQvjvS0Qhk=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025127522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "140737" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.varmjyipxb.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025127522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "varmjyipxb" + }, + { + "Name": "integrity", + "Value": "sha256-SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.varmjyipxb.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "140737" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "varmjyipxb" + }, + { + "Name": "integrity", + "Value": "sha256-SbFuNq448OCG6SfpkkcWzdN1eODi7tgLYlIGMUd9d84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.js.varmjyipxb.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "varmjyipxb" + }, + { + "Name": "integrity", + "Value": "sha256-531WONULc3lcKOzpExUEuDD2lEPTLfxbChMYWlBwg/o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132784491" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "21209" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028232637" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35419" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "125307" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35419" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.me3o5ic45c.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028232637" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35419" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me3o5ic45c" + }, + { + "Name": "integrity", + "Value": "sha256-PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.me3o5ic45c.map", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "125307" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me3o5ic45c" + }, + { + "Name": "integrity", + "Value": "sha256-PpSzrXTyWwE/6T8Eh6ZUaGZdrZaINw/nQWmoT7cj9k4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.js.me3o5ic45c.map.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35419" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "me3o5ic45c" + }, + { + "Name": "integrity", + "Value": "sha256-7kXV/ApET5CLfzNIswt6pXoqmtqB7fH3XkwWMSq2kO8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.ngpxfelrq1.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000132784491" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngpxfelrq1" + }, + { + "Name": "integrity", + "Value": "sha256-J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.ngpxfelrq1.js", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21209" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngpxfelrq1" + }, + { + "Name": "integrity", + "Value": "sha256-J3ZoIvlmDyBimtp0bgttiBesL0E3X9HZQK4DID72LPQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/esm/popper.min.ngpxfelrq1.js.gz", + "AssetFile": "adminlte/plugins/popper/esm/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ngpxfelrq1" + }, + { + "Name": "integrity", + "Value": "sha256-9POH0E7zKToTVSYO+SDomjfiDIb2ea0grZ76HzVaKdc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/esm/popper.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000108061379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.l3s559wkyt.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056763354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17616" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3s559wkyt" + }, + { + "Name": "integrity", + "Value": "sha256-f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.l3s559wkyt.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "61481" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3s559wkyt" + }, + { + "Name": "integrity", + "Value": "sha256-f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.l3s559wkyt.map.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17616" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l3s559wkyt" + }, + { + "Name": "integrity", + "Value": "sha256-UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056763354" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17616" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "61481" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f/mmUTw4fFvNiLLPGYiMjQ6pd00/xDINde+vsvEs2Qw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.js.map.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17616" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UuXOVLbEdBnwoKVPcutjKINIkNiFvv3tksa8djxSwqE=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243013366" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.2mqd73wydm.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064695607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqd73wydm" + }, + { + "Name": "integrity", + "Value": "sha256-BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.2mqd73wydm.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53753" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqd73wydm" + }, + { + "Name": "integrity", + "Value": "sha256-BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.2mqd73wydm.map.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2mqd73wydm" + }, + { + "Name": "integrity", + "Value": "sha256-Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064695607" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53753" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BmWHAWdV/gzQWAM+tU4VXV/h4q7AKnNH0T05mQ4hg4U=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15456" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fq1VtAaRLunJLTwqszAVnx88taKAwPxFwV1uFS0PAyA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.n6wuanslaa.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000243013366" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n6wuanslaa" + }, + { + "Name": "integrity", + "Value": "sha256-kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.n6wuanslaa.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n6wuanslaa" + }, + { + "Name": "integrity", + "Value": "sha256-kfuRYliQuoCtYz9KjVY95m1g1sV+2dZLbR2rK8ZXEb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.min.n6wuanslaa.js.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4114" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n6wuanslaa" + }, + { + "Name": "integrity", + "Value": "sha256-MiM2iCnFZa/K/l02EyvrVXYmiMGG4iM+WRdRCsPEWRg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.o476pe8pbr.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000108061379" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o476pe8pbr" + }, + { + "Name": "integrity", + "Value": "sha256-aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.o476pe8pbr.js", + "AssetFile": "adminlte/plugins/popper/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34956" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o476pe8pbr" + }, + { + "Name": "integrity", + "Value": "sha256-aCXiMqqQ75ipRYlRNKi82xNwvO/gbpJcZF7sH3v2+6g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper-utils.o476pe8pbr.js.gz", + "AssetFile": "adminlte/plugins/popper/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o476pe8pbr" + }, + { + "Name": "integrity", + "Value": "sha256-GzYiW4FNm7eLmrVR5jXQ1AyW7SSop587F1YXXPEemNQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper-utils.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.cnqxsv05bf.js", + "AssetFile": "adminlte/plugins/popper/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045398829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnqxsv05bf" + }, + { + "Name": "integrity", + "Value": "sha256-2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.cnqxsv05bf.js", + "AssetFile": "adminlte/plugins/popper/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "87323" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnqxsv05bf" + }, + { + "Name": "integrity", + "Value": "sha256-2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.cnqxsv05bf.js.gz", + "AssetFile": "adminlte/plugins/popper/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cnqxsv05bf" + }, + { + "Name": "integrity", + "Value": "sha256-jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js", + "AssetFile": "adminlte/plugins/popper/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045398829" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js", + "AssetFile": "adminlte/plugins/popper/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "87323" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2EJySzm86MmITa7HfMcJF6CXpS//DRnNbkJc9yssIm8=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.gz", + "AssetFile": "adminlte/plugins/popper/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jzPDK7rpF5N42iBUxcAe9Aj5DFS12YovGXzQWgujfHQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.ioqez2bgqu.map", + "AssetFile": "adminlte/plugins/popper/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025416190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ioqez2bgqu" + }, + { + "Name": "integrity", + "Value": "sha256-boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.ioqez2bgqu.map", + "AssetFile": "adminlte/plugins/popper/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "140064" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ioqez2bgqu" + }, + { + "Name": "integrity", + "Value": "sha256-boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.ioqez2bgqu.map.gz", + "AssetFile": "adminlte/plugins/popper/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ioqez2bgqu" + }, + { + "Name": "integrity", + "Value": "sha256-wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.map", + "AssetFile": "adminlte/plugins/popper/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025416190" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.map", + "AssetFile": "adminlte/plugins/popper/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "140064" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-boYDW0lK2WXUSW/23ENaAHr1cHrCAoHaBtQEZAJW6kg=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.js.map.gz", + "AssetFile": "adminlte/plugins/popper/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39344" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wehcRHG0IMcMiT8+OtrZkSYB8eZsgytdq2zFHgIWUbA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.34byls3j4i.js", + "AssetFile": "adminlte/plugins/popper/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000137475942" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34byls3j4i" + }, + { + "Name": "integrity", + "Value": "sha256-w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.34byls3j4i.js", + "AssetFile": "adminlte/plugins/popper/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34byls3j4i" + }, + { + "Name": "integrity", + "Value": "sha256-w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.34byls3j4i.js.gz", + "AssetFile": "adminlte/plugins/popper/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "34byls3j4i" + }, + { + "Name": "integrity", + "Value": "sha256-LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js", + "AssetFile": "adminlte/plugins/popper/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000137475942" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js", + "AssetFile": "adminlte/plugins/popper/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-w4Gkt1l7ROMB+gRfaRflKnFNW9tYPodE+AKdgOx5hew=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.fmnj87jpto.map", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028298149" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35337" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fmnj87jpto" + }, + { + "Name": "integrity", + "Value": "sha256-V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.fmnj87jpto.map", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "125107" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fmnj87jpto" + }, + { + "Name": "integrity", + "Value": "sha256-V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.fmnj87jpto.map.gz", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35337" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fmnj87jpto" + }, + { + "Name": "integrity", + "Value": "sha256-pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/popper.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.gz", + "AssetFile": "adminlte/plugins/popper/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7273" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LicslDRxpSIbQESxS/jeb0eNzJf8oz59PvRR9DQE1LY=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028298149" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35337" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "125107" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V/JUv1ADmJgLVQoTFlKTczQEdopZVFCa61FLtTicWwA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/popper.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35337" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pyDceKL4y9HImByZKsowFFTEovwu/36oFBw73HsDEVE=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.02ku35hmlb.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102176356" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02ku35hmlb" + }, + { + "Name": "integrity", + "Value": "sha256-CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.02ku35hmlb.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "37819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02ku35hmlb" + }, + { + "Name": "integrity", + "Value": "sha256-CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.02ku35hmlb.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "02ku35hmlb" + }, + { + "Name": "integrity", + "Value": "sha256-h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000102176356" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "37819" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CGgyJoLg0zAAhhluAPLlSItlNfKKEzEymrC3Nq6Qs1g=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9786" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-h1PF7JcbAnc4AkF75/fBkVzyDH+BDzkeG/kSNtECAyo=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056293628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17763" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "61788" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17763" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.uggng918zj.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000056293628" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17763" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uggng918zj" + }, + { + "Name": "integrity", + "Value": "sha256-Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.uggng918zj.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "61788" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uggng918zj" + }, + { + "Name": "integrity", + "Value": "sha256-Hpf6LnbmoSIArEC3Xuktb3ek5s0CfnR5Y4QtkjCA0r0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.js.uggng918zj.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "17763" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uggng918zj" + }, + { + "Name": "integrity", + "Value": "sha256-GD6U91j1vUuDYxqXLTv/ezgh9eB9qPcYZ9/9iD1jQ9k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.etjj7hewk3.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000238948626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "etjj7hewk3" + }, + { + "Name": "integrity", + "Value": "sha256-7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.etjj7hewk3.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "etjj7hewk3" + }, + { + "Name": "integrity", + "Value": "sha256-7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.etjj7hewk3.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "etjj7hewk3" + }, + { + "Name": "integrity", + "Value": "sha256-zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000238948626" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7uke1FJfmmuf3oWHy1kiTDM/JSKyDqfWyp5Zoq8IDmQ=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zy8SqgQCI6YvaBLEehgV5zc7txLMDw5Z3tUYVRMjt/U=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.ku6rjpl5cm.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064750065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15443" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ku6rjpl5cm" + }, + { + "Name": "integrity", + "Value": "sha256-lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.ku6rjpl5cm.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53756" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ku6rjpl5cm" + }, + { + "Name": "integrity", + "Value": "sha256-lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.ku6rjpl5cm.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15443" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ku6rjpl5cm" + }, + { + "Name": "integrity", + "Value": "sha256-DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000064750065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15443" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53756" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lB3kQzy8M1LQzJH0/JY7F6zsH1nofUj6tjXi5z9vEHA=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper-utils.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15443" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DP1r28ZICm36fwe7MqdlKH8/RgpUyjanEXNph6lebaE=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043875044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22791" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "91360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.f24qxeaz86.flow", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.flow", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3270" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"6U/h5xo74G+UIXnhb3MTkEgrYp+yk/vK8MJrdRwBWiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f24qxeaz86" + }, + { + "Name": "integrity", + "Value": "sha256-6U/h5xo74G+UIXnhb3MTkEgrYp+yk/vK8MJrdRwBWiw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js.flow" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.flow", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.flow", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3270" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"6U/h5xo74G+UIXnhb3MTkEgrYp+yk/vK8MJrdRwBWiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6U/h5xo74G+UIXnhb3MTkEgrYp+yk/vK8MJrdRwBWiw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.gtr1h1f6xu.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025127522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtr1h1f6xu" + }, + { + "Name": "integrity", + "Value": "sha256-FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.gtr1h1f6xu.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "140747" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtr1h1f6xu" + }, + { + "Name": "integrity", + "Value": "sha256-FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.gtr1h1f6xu.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gtr1h1f6xu" + }, + { + "Name": "integrity", + "Value": "sha256-zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22791" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025127522" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "140747" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FAjA61Vw7TJ5t9appvWzwc3rbmpn4uxgz7Sb/WCNzZI=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.js.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39796" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zv2ohw7+Wqf+QbHB1zvLb+wwMeBgHtCsTErF18b5jYs=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.64x6yzlrpy.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000133155792" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64x6yzlrpy" + }, + { + "Name": "integrity", + "Value": "sha256-Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.64x6yzlrpy.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "21238" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64x6yzlrpy" + }, + { + "Name": "integrity", + "Value": "sha256-Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.64x6yzlrpy.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "64x6yzlrpy" + }, + { + "Name": "integrity", + "Value": "sha256-b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000133155792" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "21238" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jst+sPRrW3EhlgWJ2UdibRdPJOC45nDIfa3CiZif7Lw=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.fujyqwjeqa.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028549405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35026" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fujyqwjeqa" + }, + { + "Name": "integrity", + "Value": "sha256-Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.fujyqwjeqa.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "123754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fujyqwjeqa" + }, + { + "Name": "integrity", + "Value": "sha256-Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.fujyqwjeqa.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35026" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fujyqwjeqa" + }, + { + "Name": "integrity", + "Value": "sha256-s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b+VIqDfrt65qKjbkq6wdi7UVO4TzuU8b/yZD8bhvDQs=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000028549405" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35026" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.map", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "123754" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cd2weQ/ol/ezwrmUzCXQWJQqHT8wHt+3qr4a0LghtTU=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.min.js.map.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "35026" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s1mJ+h0ZULCbZVDKgsulwXIjwhNeUYefLBjFoFfC/Eg=" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.rj4wubmn7z.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000043875044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22791" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj4wubmn7z" + }, + { + "Name": "integrity", + "Value": "sha256-+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.rj4wubmn7z.js", + "AssetFile": "adminlte/plugins/popper/umd/popper.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "91360" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj4wubmn7z" + }, + { + "Name": "integrity", + "Value": "sha256-+RbNYMNRtA2m4pf4QCMdOfhCNRQxj+/XwlVAvALjhxc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js" + } + ] + }, + { + "Route": "adminlte/plugins/popper/umd/popper.rj4wubmn7z.js.gz", + "AssetFile": "adminlte/plugins/popper/umd/popper.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22791" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rj4wubmn7z" + }, + { + "Name": "integrity", + "Value": "sha256-2xMd56+5IPTgzDARHJwEntATojoG0Le5hVOPIFNpfiw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/popper/umd/popper.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.js", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001689189189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.js", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.js.gz", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.yb720dne5o.js", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001689189189" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb720dne5o" + }, + { + "Name": "integrity", + "Value": "sha256-YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/Gruntfile.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.yb720dne5o.js", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2181" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb720dne5o" + }, + { + "Name": "integrity", + "Value": "sha256-YiodYdx0YmvzUsTlEI0NUy5fLNiQvbT4hzX/g51zCcg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/Gruntfile.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/Gruntfile.yb720dne5o.js.gz", + "AssetFile": "adminlte/plugins/raphael/Gruntfile.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "591" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yb720dne5o" + }, + { + "Name": "integrity", + "Value": "sha256-/oTT/VLwUsPpb/6ZjwHDZ9VBEhvashKYRqmX3MjlmDw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/Gruntfile.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.txt", + "AssetFile": "adminlte/plugins/raphael/license.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.txt", + "AssetFile": "adminlte/plugins/raphael/license.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.txt.gz", + "AssetFile": "adminlte/plugins/raphael/license.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.zc9t1srimp.txt", + "AssetFile": "adminlte/plugins/raphael/license.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001485884101" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zc9t1srimp" + }, + { + "Name": "integrity", + "Value": "sha256-XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/license.txt" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.zc9t1srimp.txt", + "AssetFile": "adminlte/plugins/raphael/license.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1103" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zc9t1srimp" + }, + { + "Name": "integrity", + "Value": "sha256-XWqW+X8cFgyXUpHQ+NQ79kNiYnvZFvAQ4qZY5uz4z9U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/license.txt" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/license.zc9t1srimp.txt.gz", + "AssetFile": "adminlte/plugins/raphael/license.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "672" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zc9t1srimp" + }, + { + "Name": "integrity", + "Value": "sha256-KLMUprcgbNDyxcBEMGIZrOkvDm/J46yU2cZ9OQ5WqMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/license.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.8rz8o64qg9.js", + "AssetFile": "adminlte/plugins/raphael/raphael.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014618387" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68406" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rz8o64qg9" + }, + { + "Name": "integrity", + "Value": "sha256-BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.8rz8o64qg9.js", + "AssetFile": "adminlte/plugins/raphael/raphael.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "319065" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rz8o64qg9" + }, + { + "Name": "integrity", + "Value": "sha256-BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.8rz8o64qg9.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68406" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8rz8o64qg9" + }, + { + "Name": "integrity", + "Value": "sha256-uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.js", + "AssetFile": "adminlte/plugins/raphael/raphael.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014618387" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68406" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.js", + "AssetFile": "adminlte/plugins/raphael/raphael.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "319065" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BBeQB5ixmew5AMWzeMzGYEb9y1jSjA0PhJt40ZeHrYA=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "68406" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uHcKrRrAtqn1K0fYeBJiO6K55Z02uzN2n6UMmDpX/p8=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.js", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031127436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.js", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "93167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.vxznce0rg7.js", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031127436" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vxznce0rg7" + }, + { + "Name": "integrity", + "Value": "sha256-TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.vxznce0rg7.js", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "93167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vxznce0rg7" + }, + { + "Name": "integrity", + "Value": "sha256-TabprKdeNXbSesCWLMrcbWSDzUhpAdcNPe5Q53rn9Yg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.min.vxznce0rg7.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vxznce0rg7" + }, + { + "Name": "integrity", + "Value": "sha256-jXbPLGNqnC3tJgkfAbkAU++t4z3pCy93e69SRuorBu0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.202vjdavko.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015447117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64736" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "202vjdavko" + }, + { + "Name": "integrity", + "Value": "sha256-4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.202vjdavko.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "303408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "202vjdavko" + }, + { + "Name": "integrity", + "Value": "sha256-4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.202vjdavko.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64736" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "202vjdavko" + }, + { + "Name": "integrity", + "Value": "sha256-guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015447117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64736" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "303408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4sJb6HcfHzVUarNHrpWaA81LQ2Z7vZ0VnX/l2f1kYJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "64736" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-guyKjEIqbY6W8wNlcuSaV7+1LP13gwKvG4KOQQWUfGQ=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032208194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "90216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.pwtvhk1buy.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000032208194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwtvhk1buy" + }, + { + "Name": "integrity", + "Value": "sha256-1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.pwtvhk1buy.js", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "90216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwtvhk1buy" + }, + { + "Name": "integrity", + "Value": "sha256-1wWvMtAAUZ23qpTkw5HIAl+45eS9zVvzpkuwH6IVkYE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/raphael/raphael.no-deps.min.pwtvhk1buy.js.gz", + "AssetFile": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pwtvhk1buy" + }, + { + "Name": "integrity", + "Value": "sha256-9wb5S48WI4J4X79Otr748ucTe00mVHvog79DRSYHWqc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/raphael/raphael.no-deps.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000698324022" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1431" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7900" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1431" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.lafwm2jy9z.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000698324022" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1431" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=\"" + }, + { + "Name": "ETag", + "Value": "W/\"beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lafwm2jy9z" + }, + { + "Name": "integrity", + "Value": "sha256-beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.lafwm2jy9z.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7900" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lafwm2jy9z" + }, + { + "Name": "integrity", + "Value": "sha256-beMHyEu3j+YF2luF8cR5yrSjFBxDNkhmD+5dVX5fABA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.lafwm2jy9z.css.gz", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1431" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lafwm2jy9z" + }, + { + "Name": "integrity", + "Value": "sha256-aeHZhVTPBBVwpHFsXXrUiL3uP8Ql5mMykyakznU8k78=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000758150114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6707" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.qg9hcnh6yl.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000758150114" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9hcnh6yl" + }, + { + "Name": "integrity", + "Value": "sha256-1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.qg9hcnh6yl.css", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6707" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9hcnh6yl" + }, + { + "Name": "integrity", + "Value": "sha256-1t2PxRCHxoKzXAodN2dCmETYqMaz5TSzg3Ct1/gjJtw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.qg9hcnh6yl.css.gz", + "AssetFile": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1318" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qg9hcnh6yl" + }, + { + "Name": "integrity", + "Value": "sha256-qZmFrkbryXLdUtWIChqpOg9AIgZ8frmBvcVA8RZ/ZBk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.css", + "AssetFile": "adminlte/plugins/select2/css/select2.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442869796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.css", + "AssetFile": "adminlte/plugins/select2/css/select2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "17839" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.css.gz", + "AssetFile": "adminlte/plugins/select2/css/select2.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.hb1ug0nc9n.css", + "AssetFile": "adminlte/plugins/select2/css/select2.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442869796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb1ug0nc9n" + }, + { + "Name": "integrity", + "Value": "sha256-LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.hb1ug0nc9n.css", + "AssetFile": "adminlte/plugins/select2/css/select2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "17839" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb1ug0nc9n" + }, + { + "Name": "integrity", + "Value": "sha256-LeJJJvvbAxhTZF0Zr+gypIZTUSMdTmaAXZDGwHXo/zc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.hb1ug0nc9n.css.gz", + "AssetFile": "adminlte/plugins/select2/css/select2.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2257" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hb1ug0nc9n" + }, + { + "Name": "integrity", + "Value": "sha256-pVjvE7zlDJaN8MJfYCta/ESMqkaGu0CVXuHoRqbsdE4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.2b36fav156.css", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000500250125" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1998" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2b36fav156" + }, + { + "Name": "integrity", + "Value": "sha256-wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.2b36fav156.css", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2b36fav156" + }, + { + "Name": "integrity", + "Value": "sha256-wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.2b36fav156.css.gz", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1998" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2b36fav156" + }, + { + "Name": "integrity", + "Value": "sha256-6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/css/select2.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.css", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000500250125" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1998" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.css", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wqKC3W2sEKP79Gm05n9Ilgh3eFTm0Ve/ESM9+6oWhR4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/css/select2.min.css.gz", + "AssetFile": "adminlte/plugins/select2/css/select2.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1998" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6bhwFp0/rqyN55OUOFizYWUo8m8uKD16loBsox/MADU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.2zcn3z8kon.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002150537634" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2zcn3z8kon" + }, + { + "Name": "integrity", + "Value": "sha256-ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.2zcn3z8kon.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2zcn3z8kon" + }, + { + "Name": "integrity", + "Value": "sha256-ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/af.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.2zcn3z8kon.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2zcn3z8kon" + }, + { + "Name": "integrity", + "Value": "sha256-au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/af.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002150537634" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ko+UaRSuPUOARjj5mASUai4TdUpXbFamv9CxKjj8pgg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/af.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/af.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "464" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-au65j57SmpAV6SiNzQN9vjxkSyRQer+aEHizWu7BLPA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.iiaqvpxolq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001988071571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iiaqvpxolq" + }, + { + "Name": "integrity", + "Value": "sha256-RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.iiaqvpxolq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iiaqvpxolq" + }, + { + "Name": "integrity", + "Value": "sha256-RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ar.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.iiaqvpxolq.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "iiaqvpxolq" + }, + { + "Name": "integrity", + "Value": "sha256-NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ar.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001988071571" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RrW0mvezUBSrSQeczWVe4+krItLsq+Ouv8w/fU9e8tw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ar.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ar.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "502" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NltgZr0PsFxQaUtoYpkX8VADeX86hO1qn7BzE8KawtM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.w1lbhtuskh.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002398081535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1lbhtuskh" + }, + { + "Name": "integrity", + "Value": "sha256-rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.w1lbhtuskh.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1lbhtuskh" + }, + { + "Name": "integrity", + "Value": "sha256-rJvkqnTco8vAurYtPr0vqsDkV1DKHW1I9gfNuyzgdV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/az.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/az.w1lbhtuskh.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/az.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "416" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "w1lbhtuskh" + }, + { + "Name": "integrity", + "Value": "sha256-OeHwfIPm0SqEEmTdYfr47NTRxpymMoztCT7Ikv343ho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/az.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.6vq77dq91n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001831501832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6vq77dq91n" + }, + { + "Name": "integrity", + "Value": "sha256-wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.6vq77dq91n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "970" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6vq77dq91n" + }, + { + "Name": "integrity", + "Value": "sha256-wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bg.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.6vq77dq91n.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6vq77dq91n" + }, + { + "Name": "integrity", + "Value": "sha256-adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bg.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001831501832" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "970" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wh5YeDrxH20FS2FLwQK8h91m/HckwUhPs8yUV2gV8ew=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bg.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bg.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "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": "\"adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-adn7mwbmc37cA2tyVmxKXI5fFxXRZq6xl8PVLOdSLUQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.1uabpj18mf.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001792114695" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1uabpj18mf" + }, + { + "Name": "integrity", + "Value": "sha256-Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bn.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.1uabpj18mf.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1293" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1uabpj18mf" + }, + { + "Name": "integrity", + "Value": "sha256-Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bn.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.1uabpj18mf.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1uabpj18mf" + }, + { + "Name": "integrity", + "Value": "sha256-+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bn.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001792114695" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1293" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z/9pkbfzUFbG5K8hAtNcfOMAiD7+OdVZ8Dsx2vlAekY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bn.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bn.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "557" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+jp2JTqL5yZLT02GBMpyMcFMnZNj5mShpsA9KWM9A9w=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.fq5886noo3.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001893939394" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq5886noo3" + }, + { + "Name": "integrity", + "Value": "sha256-+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.fq5886noo3.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq5886noo3" + }, + { + "Name": "integrity", + "Value": "sha256-+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bs.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.fq5886noo3.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fq5886noo3" + }, + { + "Name": "integrity", + "Value": "sha256-4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/bs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001893939394" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+eA4sPtx+sWcDqEb9Nmi4IW6R3lkZ1kRUgmzrD2DE4M=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/bs.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/bs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4c16WOFp0x+dPMGVP9qGPB1VEAthgWbIGuwTDBwvSeo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.nrpastnkn6.txt", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nrpastnkn6" + }, + { + "Name": "integrity", + "Value": "sha256-Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/build.txt" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.nrpastnkn6.txt", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nrpastnkn6" + }, + { + "Name": "integrity", + "Value": "sha256-Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/build.txt" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.nrpastnkn6.txt.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nrpastnkn6" + }, + { + "Name": "integrity", + "Value": "sha256-dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/build.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.txt", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002824858757" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.txt", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2038" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Db+PQNhI2DLMvZGE6YeMMupk4QNikM2WNR+WOlURrgc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/build.txt.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/build.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "353" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dR3X0VxzhVLROcLkEBglMxDXOHqMtJmgkNIMe4O+9QI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.54zzfyn9cc.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002105263158" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "54zzfyn9cc" + }, + { + "Name": "integrity", + "Value": "sha256-hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.54zzfyn9cc.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "54zzfyn9cc" + }, + { + "Name": "integrity", + "Value": "sha256-hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ca.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.54zzfyn9cc.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "54zzfyn9cc" + }, + { + "Name": "integrity", + "Value": "sha256-T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ca.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002105263158" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hYN6CSnAhw80PM49dsvVXTyihFd2vQ7c50p6AFluC3k=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ca.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ca.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T3vlrKmIAFIWJPQamlMMKIuI6QZu6YEQn7SSDvvcSG4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.jj88p9grn2.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001592356688" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jj88p9grn2" + }, + { + "Name": "integrity", + "Value": "sha256-Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.jj88p9grn2.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1294" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jj88p9grn2" + }, + { + "Name": "integrity", + "Value": "sha256-Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/cs.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.jj88p9grn2.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jj88p9grn2" + }, + { + "Name": "integrity", + "Value": "sha256-GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/cs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001592356688" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1294" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Pxr3rID0BQN/QX0tuyqh5wrCljxzXScijc9aXsnN3GI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/cs.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/cs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "627" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GWd+FMcz+5/xC/UE29Q7cL8AaxG4Cify+rpgxQVIIGc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002247191011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.oystkcg6jb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002247191011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oystkcg6jb" + }, + { + "Name": "integrity", + "Value": "sha256-IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.oystkcg6jb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "830" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oystkcg6jb" + }, + { + "Name": "integrity", + "Value": "sha256-IAQlwuALnI77fj9MoRx/iag1hGuW5d0fr8wAkS3xQEg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/da.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/da.oystkcg6jb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/da.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "444" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oystkcg6jb" + }, + { + "Name": "integrity", + "Value": "sha256-rfazGv5Ceq58lP6J6WjMTHN8N5T/Ife6UyseBJ+J+Jg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/da.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.1jwrkvecqn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002118644068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jwrkvecqn" + }, + { + "Name": "integrity", + "Value": "sha256-bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.1jwrkvecqn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jwrkvecqn" + }, + { + "Name": "integrity", + "Value": "sha256-bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/de.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.1jwrkvecqn.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1jwrkvecqn" + }, + { + "Name": "integrity", + "Value": "sha256-Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/de.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002118644068" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bS2y8D5oUPhmNqMg5su69TAESG1pkKiJjADOJRCOM+0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/de.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/de.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "471" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z0tUw2K3MXivy1G0grq39tiSTcOZQUmG3HhCUSh7zDw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.4k2ywce86c.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001798561151" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4k2ywce86c" + }, + { + "Name": "integrity", + "Value": "sha256-dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/dsb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.4k2ywce86c.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4k2ywce86c" + }, + { + "Name": "integrity", + "Value": "sha256-dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/dsb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.4k2ywce86c.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4k2ywce86c" + }, + { + "Name": "integrity", + "Value": "sha256-4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/dsb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001798561151" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1019" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dPGGy/sELOUetW+QsBxzHup/hO9MYNnDkV9kPF52WVI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/dsb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/dsb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4lc6ki5y+M1K//cxyzgi2Ld4G5csD+p/Grz751o0w4k=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.h5licrz1zb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5licrz1zb" + }, + { + "Name": "integrity", + "Value": "sha256-lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.h5licrz1zb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5licrz1zb" + }, + { + "Name": "integrity", + "Value": "sha256-lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/el.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.h5licrz1zb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h5licrz1zb" + }, + { + "Name": "integrity", + "Value": "sha256-CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/el.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001540832049" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lYMceey+UeMnO4W5TjBw+d86OYbu5WfvrbKTd4RhKv8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/el.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/el.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "648" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CcDqn/Z1C4GO8BlcTcgWGAqDlSWtBXYm1KzfdNGXr/0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002217294900" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.wipmfhr2g0.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002217294900" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wipmfhr2g0" + }, + { + "Name": "integrity", + "Value": "sha256-uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/en.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.wipmfhr2g0.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "846" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wipmfhr2g0" + }, + { + "Name": "integrity", + "Value": "sha256-uK24ghOQ0sQuErf/bQIf90LCl7hwdOyhx9LaA/xrwQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/en.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/en.wipmfhr2g0.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/en.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wipmfhr2g0" + }, + { + "Name": "integrity", + "Value": "sha256-6KVVmqSCbB0uqJcCxA9j6V1Bdj6EhnpgOIkexkVWySo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/en.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.jdrzxdqvdt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002087682672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jdrzxdqvdt" + }, + { + "Name": "integrity", + "Value": "sha256-qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.jdrzxdqvdt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "924" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jdrzxdqvdt" + }, + { + "Name": "integrity", + "Value": "sha256-qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/es.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.jdrzxdqvdt.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jdrzxdqvdt" + }, + { + "Name": "integrity", + "Value": "sha256-0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/es.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002087682672" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "924" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qRX8vA9t/GWNj5YKvrzU/054GraXQQ7rqiCcL8l41nw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/es.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/es.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "478" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0EyxH9GFipa8ZW4J9dUZJ3W00GJYGUWnnx0rHJ6nSgQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "803" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.x57dvjbykn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002293577982" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x57dvjbykn" + }, + { + "Name": "integrity", + "Value": "sha256-e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.x57dvjbykn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "803" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x57dvjbykn" + }, + { + "Name": "integrity", + "Value": "sha256-e7/Xngerx67RRHMliLrVFaqnC6QE1bcv+M8IOvvsJ2Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/et.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/et.x57dvjbykn.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/et.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "435" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x57dvjbykn" + }, + { + "Name": "integrity", + "Value": "sha256-Oc0DVQTUGu1fojZvcb7M53QbIdbsD7oyfwPlGb0pdK8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/et.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.22w06kaf3h.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22w06kaf3h" + }, + { + "Name": "integrity", + "Value": "sha256-tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.22w06kaf3h.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22w06kaf3h" + }, + { + "Name": "integrity", + "Value": "sha256-tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/eu.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.22w06kaf3h.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "22w06kaf3h" + }, + { + "Name": "integrity", + "Value": "sha256-9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/eu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002202643172" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "870" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tmetylDFjUrI3et6iaPxihYW5Bt/g/aw90wgyNDlXdg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/eu.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/eu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "453" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9n6SyXH0OMIaa3N6gkcV183yUMBjtRqkBQGV5AMWHvI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001845018450" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "541" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1025" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "541" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.kwth1fn47b.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001845018450" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "541" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwth1fn47b" + }, + { + "Name": "integrity", + "Value": "sha256-pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.kwth1fn47b.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1025" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwth1fn47b" + }, + { + "Name": "integrity", + "Value": "sha256-pF6sXPvrPuRpx0lPoHXDPuL45+wZRsFs/X6BAsaE3sw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fa.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fa.kwth1fn47b.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fa.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "541" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kwth1fn47b" + }, + { + "Name": "integrity", + "Value": "sha256-pfjcjj2V48+uDjLeVkUx4BcxL4CBO0bzEnv/0fa2KP0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fa.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.7ofhjf3fke.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ofhjf3fke" + }, + { + "Name": "integrity", + "Value": "sha256-l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.7ofhjf3fke.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ofhjf3fke" + }, + { + "Name": "integrity", + "Value": "sha256-l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.7ofhjf3fke.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7ofhjf3fke" + }, + { + "Name": "integrity", + "Value": "sha256-pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l+jxalKD7B5A6H4d1hjJxBVEENmRvpYnvyxblGNisIA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fi.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pwO/ymRf3qY/LomiHh0JZTlEiuHilh56KxkDFFWxXW8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.vrrsowb13n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002044989775" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrrsowb13n" + }, + { + "Name": "integrity", + "Value": "sha256-ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.vrrsowb13n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrrsowb13n" + }, + { + "Name": "integrity", + "Value": "sha256-ZfwscL1p5CffCbGCL60BUqfHTBT3/ERjwXvcdnU3hpg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/fr.vrrsowb13n.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/fr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "488" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vrrsowb13n" + }, + { + "Name": "integrity", + "Value": "sha256-tUMW7Mpb7D4+ZQf/M38Y1t247UimfATAfOY5ebgkfUs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/fr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.afp367alxq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002132196162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afp367alxq" + }, + { + "Name": "integrity", + "Value": "sha256-ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.afp367alxq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afp367alxq" + }, + { + "Name": "integrity", + "Value": "sha256-ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/gl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.afp367alxq.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "afp367alxq" + }, + { + "Name": "integrity", + "Value": "sha256-/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/gl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002132196162" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ijoej39SlAbbzin4jp9jqcc4Dsqv5rQ5T7aGgs+WDI0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/gl.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/gl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "468" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/N4V5PtLG9dHb7un6SteDN5ECatnorzPscud6GMz6aY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.wadteiyvg9.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001915708812" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wadteiyvg9" + }, + { + "Name": "integrity", + "Value": "sha256-mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.wadteiyvg9.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "986" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wadteiyvg9" + }, + { + "Name": "integrity", + "Value": "sha256-mB7pwTpG26Z4D7Re3V6dX62TNj4JCjENs2xZ1zHyT1c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/he.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/he.wadteiyvg9.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/he.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "521" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wadteiyvg9" + }, + { + "Name": "integrity", + "Value": "sha256-TWwzXJw/VrhthcU2pog7v2ITy8ohvVkMScp3jPWCOqQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/he.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.b6jhtpdtyn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6jhtpdtyn" + }, + { + "Name": "integrity", + "Value": "sha256-rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.b6jhtpdtyn.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6jhtpdtyn" + }, + { + "Name": "integrity", + "Value": "sha256-rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.b6jhtpdtyn.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "b6jhtpdtyn" + }, + { + "Name": "integrity", + "Value": "sha256-ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001736111111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1177" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rTOz55qQfsHCMaHAyIVqY7eAal1H+SRXCD4invJWK9I=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hi.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "575" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ePaQaR6DJhhYpBf2SdAEM/WzynMoBlvefCgBR3gGJVk=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002079002079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.wfnuqz9r1y.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002079002079" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wfnuqz9r1y" + }, + { + "Name": "integrity", + "Value": "sha256-LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.wfnuqz9r1y.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "854" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wfnuqz9r1y" + }, + { + "Name": "integrity", + "Value": "sha256-LOh1LaseMKIOmMdiAIBR4pNZpZi9U5Vtc6LkEKg43oc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hr.wfnuqz9r1y.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "480" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wfnuqz9r1y" + }, + { + "Name": "integrity", + "Value": "sha256-OKryYuFJ4vYEEcebfiIx93jEgePoNOPIhyLMCtWq50M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001785714286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.vd6knyki9y.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001785714286" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vd6knyki9y" + }, + { + "Name": "integrity", + "Value": "sha256-U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hsb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.vd6knyki9y.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1020" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vd6knyki9y" + }, + { + "Name": "integrity", + "Value": "sha256-U1xkmeR0gGVENre18ufFl/453ToNgkVyhREuDcyDm8M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hsb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hsb.vd6knyki9y.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hsb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "559" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vd6knyki9y" + }, + { + "Name": "integrity", + "Value": "sha256-jWkZ0HAxW7HR059p4xQUgCyJDyE3KcHMQcxan8jZ8k4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hsb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.g5c5gkz7b6.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5c5gkz7b6" + }, + { + "Name": "integrity", + "Value": "sha256-xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.g5c5gkz7b6.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5c5gkz7b6" + }, + { + "Name": "integrity", + "Value": "sha256-xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hu.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.g5c5gkz7b6.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g5c5gkz7b6" + }, + { + "Name": "integrity", + "Value": "sha256-/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hu.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "833" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xJzoupBN08tadTAh3xJ1z13xT+cL5F8P2fqsGYGV41Q=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hu.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hu.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/BmAC1i8/zc9Jwso8y0JJ9Wr7vEUU1V7hNqbFX+YuQA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001869158879" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1030" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.pza2b464ll.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001869158879" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pza2b464ll" + }, + { + "Name": "integrity", + "Value": "sha256-24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hy.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.pza2b464ll.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1030" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pza2b464ll" + }, + { + "Name": "integrity", + "Value": "sha256-24At/g18zjvje2XrkM3/SWlu/hpRUoWbg9l+DVHHvFo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hy.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/hy.pza2b464ll.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/hy.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pza2b464ll" + }, + { + "Name": "integrity", + "Value": "sha256-688+/JVtyrBhKiTLXIc7zds8f6aEDETMobIbpAtRY5E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/hy.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.3tfe8i475g.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tfe8i475g" + }, + { + "Name": "integrity", + "Value": "sha256-eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.3tfe8i475g.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tfe8i475g" + }, + { + "Name": "integrity", + "Value": "sha256-eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/id.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.3tfe8i475g.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3tfe8i475g" + }, + { + "Name": "integrity", + "Value": "sha256-Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/id.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002380952381" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eShUCM8EZ1bRGXO+RISIeB7Iv6mfyIEsakVxt8SAGaU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/id.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/id.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "419" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mng44qOmacMYcZB1edw/CtZyrDUAIjE8mKwNd1OwP/U=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.bepl738lkr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002127659574" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bepl738lkr" + }, + { + "Name": "integrity", + "Value": "sha256-LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.bepl738lkr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bepl738lkr" + }, + { + "Name": "integrity", + "Value": "sha256-LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/is.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.bepl738lkr.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bepl738lkr" + }, + { + "Name": "integrity", + "Value": "sha256-swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/is.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002127659574" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "809" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LXmJw16MOwbGqB/MBS5AqVfVjAyAUSSX2kBuPQ78sU8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/is.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/is.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "469" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-swOJGhJiMWQhSq72regM7ZtdXO/lyCX9A/PdcnBLmRc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.5es3yjrtjv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002032520325" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5es3yjrtjv" + }, + { + "Name": "integrity", + "Value": "sha256-fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.5es3yjrtjv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "899" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5es3yjrtjv" + }, + { + "Name": "integrity", + "Value": "sha256-fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/it.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.5es3yjrtjv.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5es3yjrtjv" + }, + { + "Name": "integrity", + "Value": "sha256-5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/it.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002032520325" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "899" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fTB3nITL2RlOikYb1QzFdvyNDwrbTUbw6juORs0ecK0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/it.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/it.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "491" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5cqA9WNlQqgu06EZOQZ0ntIL8ROV5m6TlX9OS1R7er8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001941747573" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.uw1g6n7iyy.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001941747573" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uw1g6n7iyy" + }, + { + "Name": "integrity", + "Value": "sha256-rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.uw1g6n7iyy.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "864" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uw1g6n7iyy" + }, + { + "Name": "integrity", + "Value": "sha256-rt9tjm/Dmy0xt2jcaLFQekWeYXnR0yHhtioNaW+ipQM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ja.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ja.uw1g6n7iyy.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ja.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uw1g6n7iyy" + }, + { + "Name": "integrity", + "Value": "sha256-ChrbU9EZpF27pe3GSN1jaC3tFnt7hPq6Yx016zlJ9K8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ja.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001858736059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.lvs344cug9.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001858736059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvs344cug9" + }, + { + "Name": "integrity", + "Value": "sha256-8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.lvs344cug9.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1197" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvs344cug9" + }, + { + "Name": "integrity", + "Value": "sha256-8QiIaG5uLvo/9PF8uewmYqWP4qbyCEnN1c9W0Tb2D7c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ka.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ka.lvs344cug9.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ka.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lvs344cug9" + }, + { + "Name": "integrity", + "Value": "sha256-NBVRgo7Y3S/SfQCWol8hRsOULy15OT7EI33ObogTLKY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ka.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001834862385" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.ouebagmgxv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001834862385" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ouebagmgxv" + }, + { + "Name": "integrity", + "Value": "sha256-8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/km.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.ouebagmgxv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1090" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ouebagmgxv" + }, + { + "Name": "integrity", + "Value": "sha256-8AmfcNQYCdNZ0K0cAxlpD4VRt7jeQsJPSDFq7sOWT38=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/km.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/km.ouebagmgxv.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/km.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "544" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ouebagmgxv" + }, + { + "Name": "integrity", + "Value": "sha256-NPoDKyjVp85j13sNd8BXy45UWHhLGtldgkrXexdQnto=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/km.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001960784314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.qsb2rmuo8t.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001960784314" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qsb2rmuo8t" + }, + { + "Name": "integrity", + "Value": "sha256-xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.qsb2rmuo8t.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "857" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qsb2rmuo8t" + }, + { + "Name": "integrity", + "Value": "sha256-xmTqmKu+9yqQNX/Rv3A+SbmwZrmPzcI156lgneQ2Dp0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ko.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ko.qsb2rmuo8t.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ko.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "509" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qsb2rmuo8t" + }, + { + "Name": "integrity", + "Value": "sha256-gjlNzAeranyJHPc6m6H0uXgf3/TMPh4sbfk6d4LbHkM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ko.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.7xfo6g5x1n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001901140684" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7xfo6g5x1n" + }, + { + "Name": "integrity", + "Value": "sha256-m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.7xfo6g5x1n.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7xfo6g5x1n" + }, + { + "Name": "integrity", + "Value": "sha256-m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lt.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.7xfo6g5x1n.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7xfo6g5x1n" + }, + { + "Name": "integrity", + "Value": "sha256-2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001901140684" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "946" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-m/yD551k2htrjo0NEuVwCMXoMW2DQkveJgvAEyJneXM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lt.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/lt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "525" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2rRuetPMw8OS4YR0RDKrtcNXIZxJsHTcgjHtyXLVy04=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.0wrb8hg9ra.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001964636542" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wrb8hg9ra" + }, + { + "Name": "integrity", + "Value": "sha256-8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.0wrb8hg9ra.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wrb8hg9ra" + }, + { + "Name": "integrity", + "Value": "sha256-8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lv.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.0wrb8hg9ra.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0wrb8hg9ra" + }, + { + "Name": "integrity", + "Value": "sha256-SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/lv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001964636542" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "902" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8I3e5dzEgqQksHpnAYWCNfPRYjqm2KjelKI6k9IbYgU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/lv.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/lv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SFdiKrImzHWP84jc3qQYTh4G4GVGnYa/dAPrvKX4wZw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.4fay9wlqw7.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001782531194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4fay9wlqw7" + }, + { + "Name": "integrity", + "Value": "sha256-QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.4fay9wlqw7.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1040" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4fay9wlqw7" + }, + { + "Name": "integrity", + "Value": "sha256-QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/mk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.4fay9wlqw7.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4fay9wlqw7" + }, + { + "Name": "integrity", + "Value": "sha256-ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/mk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001782531194" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1040" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QGJeTfYGFq9oe2ESEQESA5WRl3jvxZsKbkiw4XXk29k=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/mk.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/mk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "560" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZGPvryg8OYiMXFZdbr3w8Jbmoa6Ej+kWqiZsgsuyMZU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.t0ocp7vnp5.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002272727273" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0ocp7vnp5" + }, + { + "Name": "integrity", + "Value": "sha256-nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.t0ocp7vnp5.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "813" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0ocp7vnp5" + }, + { + "Name": "integrity", + "Value": "sha256-nelrGXADXfohKVhtkCXCHgN1qbUIaEtWRTChOvV5Zp8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ms.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ms.t0ocp7vnp5.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ms.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "439" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t0ocp7vnp5" + }, + { + "Name": "integrity", + "Value": "sha256-Bb4g0gPO6NflK676SSclRuUHpUU/iRuQETz9Q6ZHSC4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ms.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.zilgbruiai.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002392344498" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zilgbruiai" + }, + { + "Name": "integrity", + "Value": "sha256-BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.zilgbruiai.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "780" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zilgbruiai" + }, + { + "Name": "integrity", + "Value": "sha256-BZikH6orKz6I+HtrttKVFD3qt2eNMApzCUk9TxaHVQE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nb.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nb.zilgbruiai.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/nb.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "417" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zilgbruiai" + }, + { + "Name": "integrity", + "Value": "sha256-WxhoTxyZZ582VtoYORA4mYuFeVm2AgBJsjhv9jV8kyg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nb.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001680672269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.xy6wxhlefz.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001680672269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xy6wxhlefz" + }, + { + "Name": "integrity", + "Value": "sha256-t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.xy6wxhlefz.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xy6wxhlefz" + }, + { + "Name": "integrity", + "Value": "sha256-t5/35NTGp66erBz/qNDJSQNEV7wWrhWlOkg0YISPrxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ne.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ne.xy6wxhlefz.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ne.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "594" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xy6wxhlefz" + }, + { + "Name": "integrity", + "Value": "sha256-vkOdoBtztQ0F7MnCnJ0y5BQYAPDKsHuMYfGp5YKgfGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ne.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.9dqmb8bnit.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002109704641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dqmb8bnit" + }, + { + "Name": "integrity", + "Value": "sha256-A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.9dqmb8bnit.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dqmb8bnit" + }, + { + "Name": "integrity", + "Value": "sha256-A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.9dqmb8bnit.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9dqmb8bnit" + }, + { + "Name": "integrity", + "Value": "sha256-o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/nl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002109704641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "906" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A1b9N9lNvES8MQrLOoMKypYFKhu9j/RB3crHaf+2JOA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/nl.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/nl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o/DHtseu5atCWBh1OjtTfkm94D/PWPw6oDdDoLpWyZ0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.0eancdsgzo.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001893939394" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eancdsgzo" + }, + { + "Name": "integrity", + "Value": "sha256-WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.0eancdsgzo.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eancdsgzo" + }, + { + "Name": "integrity", + "Value": "sha256-WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.0eancdsgzo.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0eancdsgzo" + }, + { + "Name": "integrity", + "Value": "sha256-1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001893939394" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "949" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WDR71OtB+g9hwetKsPZ9LTEbrY3GJmu0e3lAdMIavfE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pl.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "527" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1U7undQReSA5i7yTFKsMj4v1SqwSoSg2ypvS7Eiavic=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.10iwy0ldtt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001692047377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "10iwy0ldtt" + }, + { + "Name": "integrity", + "Value": "sha256-IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ps.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.10iwy0ldtt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "10iwy0ldtt" + }, + { + "Name": "integrity", + "Value": "sha256-IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ps.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.10iwy0ldtt.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "10iwy0ldtt" + }, + { + "Name": "integrity", + "Value": "sha256-MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ps.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001692047377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IRUVgSAoSotezfSeF9usrszMv5gjmlBAa2VBOqCmQj0=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ps.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ps.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "590" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MT+pC7xAepsue9SRneoE9mItQSLp55FNs7V/PbIOvJA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.55ml1bnt3l.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002040816327" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55ml1bnt3l" + }, + { + "Name": "integrity", + "Value": "sha256-WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt-BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.55ml1bnt3l.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55ml1bnt3l" + }, + { + "Name": "integrity", + "Value": "sha256-WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt-BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.55ml1bnt3l.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "55ml1bnt3l" + }, + { + "Name": "integrity", + "Value": "sha256-Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002040816327" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WcCMg/X9Qm8C2nS6ujr7VOgTgBdQK9Row5igfQhxPN8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt-BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ik/iPE8DVjT/Khu1lknP8AuO9CqapnxwxGutTDORaFY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002109704641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "880" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.wpl12fn2jb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002109704641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wpl12fn2jb" + }, + { + "Name": "integrity", + "Value": "sha256-NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.wpl12fn2jb.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "880" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wpl12fn2jb" + }, + { + "Name": "integrity", + "Value": "sha256-NPI5a3tycCVJbt2PMu2O78GFxRuO2IErV17s45eC3TE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/pt.wpl12fn2jb.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/pt.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wpl12fn2jb" + }, + { + "Name": "integrity", + "Value": "sha256-+4oMaL4iEGMAPGCuRLf3BRsW8RK9hP2hJJvsD1IgduA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/pt.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.p2267ay87h.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001937984496" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2267ay87h" + }, + { + "Name": "integrity", + "Value": "sha256-AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.p2267ay87h.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "940" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2267ay87h" + }, + { + "Name": "integrity", + "Value": "sha256-AT9f3p/OKC9xHQ+rFKpfzjhG3XEzXYAL1vm/tLTibWY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ro.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ro.p2267ay87h.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ro.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "515" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p2267ay87h" + }, + { + "Name": "integrity", + "Value": "sha256-Z/GpzLsq4swul+jJGhx6bS2Zhm1FWj06CHQeArQV98g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ro.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001572327044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1173" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.x47hej4lor.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001572327044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x47hej4lor" + }, + { + "Name": "integrity", + "Value": "sha256-YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.x47hej4lor.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1173" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x47hej4lor" + }, + { + "Name": "integrity", + "Value": "sha256-YbioO5Y6HUpsmItgzWlG7xFhWgBcmdNqxmNrdVFEoO4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ru.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/ru.x47hej4lor.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/ru.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "x47hej4lor" + }, + { + "Name": "integrity", + "Value": "sha256-IeES6CbBTNXq8HzDkqZSG8sor5pNyjqoEXeTwEgx0Xc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/ru.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.c2mzpq8hox.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001610305958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2mzpq8hox" + }, + { + "Name": "integrity", + "Value": "sha256-jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.c2mzpq8hox.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2mzpq8hox" + }, + { + "Name": "integrity", + "Value": "sha256-jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.c2mzpq8hox.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2mzpq8hox" + }, + { + "Name": "integrity", + "Value": "sha256-c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001610305958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1308" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jIR6SYp7J2/vK/cLeaDiDy5yzyntOUccLH5UMNBTXdA=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sk.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "620" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c4ab7JaqA8ARXypUIRd0lETf/Rd1LQ1usAdYkSQkW6w=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002036659878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.ug4v7bknlc.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002036659878" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ug4v7bknlc" + }, + { + "Name": "integrity", + "Value": "sha256-omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.ug4v7bknlc.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "927" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ug4v7bknlc" + }, + { + "Name": "integrity", + "Value": "sha256-omQH/RvDs+eSx1HIbDXrM1d2m56ASbgeQhnMk6p9Fuo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sl.ug4v7bknlc.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ug4v7bknlc" + }, + { + "Name": "integrity", + "Value": "sha256-uKCiJWX/+/yLCccNlDuXRKDQAQfOnSYHJwMZZVvtHgU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002020202020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "905" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.l9gpxrvzxd.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002020202020" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9gpxrvzxd" + }, + { + "Name": "integrity", + "Value": "sha256-mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.l9gpxrvzxd.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "905" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9gpxrvzxd" + }, + { + "Name": "integrity", + "Value": "sha256-mds5hdVKp5gmHHsKMnsrrbYE4JEeMH7qN9oGGRvY/XM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sq.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sq.l9gpxrvzxd.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sq.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "494" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "l9gpxrvzxd" + }, + { + "Name": "integrity", + "Value": "sha256-5CGXQgoAPmCiDpzbV+/sfoqN8dXd/Jqh6g6dlw6gOQw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sq.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.0bamui60cf.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bamui60cf" + }, + { + "Name": "integrity", + "Value": "sha256-VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.0bamui60cf.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bamui60cf" + }, + { + "Name": "integrity", + "Value": "sha256-VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.0bamui60cf.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0bamui60cf" + }, + { + "Name": "integrity", + "Value": "sha256-SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001633986928" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFwdB0Vz9YfXBjE1jRG/egO8XX4yC697MCW0rW/vblE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr-Cyrl.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "611" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SaIOW8OcjNXzxcv1Mxb6X8ztQTfw/1GnmLvz74QbQ3s=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001798561151" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.pc7hhjl4is.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001798561151" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc7hhjl4is" + }, + { + "Name": "integrity", + "Value": "sha256-eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.pc7hhjl4is.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc7hhjl4is" + }, + { + "Name": "integrity", + "Value": "sha256-eWzRBn3doywACeLEECx6+aV3fxkK88hG0pKkRAHyni8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sr.pc7hhjl4is.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pc7hhjl4is" + }, + { + "Name": "integrity", + "Value": "sha256-De/QPa8FxNvMMeK0+2ZPNCJFbR/AlkLgnBSrLVweqNM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.cy9bqub3s3.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cy9bqub3s3" + }, + { + "Name": "integrity", + "Value": "sha256-JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.cy9bqub3s3.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cy9bqub3s3" + }, + { + "Name": "integrity", + "Value": "sha256-JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sv.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.cy9bqub3s3.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cy9bqub3s3" + }, + { + "Name": "integrity", + "Value": "sha256-mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/sv.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002304147465" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "788" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JAlarnnsQOxFm2CqMuyhRgs+h/NEdwLq1oa4qrafWb4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/sv.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/sv.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "433" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mLJ2UVB3r4eHNq5/rNP+TG1aMKlYTBMuQBu8GEMbHoM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.ldb65ns8n6.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001926782274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ldb65ns8n6" + }, + { + "Name": "integrity", + "Value": "sha256-GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.ldb65ns8n6.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1076" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ldb65ns8n6" + }, + { + "Name": "integrity", + "Value": "sha256-GSAwulF0JVgFccsAY3btplJwa/TzR8w01gOPrh/wd84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/th.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/th.ldb65ns8n6.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/th.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "518" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ldb65ns8n6" + }, + { + "Name": "integrity", + "Value": "sha256-drZreEkd7CNV1CA6WTyaMOyOqrnYCp3I06Wqrel5Maw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/th.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.f2c15tbi6v.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2c15tbi6v" + }, + { + "Name": "integrity", + "Value": "sha256-V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.f2c15tbi6v.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "773" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2c15tbi6v" + }, + { + "Name": "integrity", + "Value": "sha256-V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.f2c15tbi6v.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f2c15tbi6v" + }, + { + "Name": "integrity", + "Value": "sha256-fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002283105023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "773" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V9zNTKuLyS4rifPJIXUeeBR1wXCVEOPZ+7nLe41TcGE=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tk.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/tk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fRHruq8ZnHIGAn1t0FUT6o0xrWG/IK41Rgqy+rGWGGc=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002341920375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.p99zc5ekca.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002341920375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p99zc5ekca" + }, + { + "Name": "integrity", + "Value": "sha256-U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.p99zc5ekca.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "777" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p99zc5ekca" + }, + { + "Name": "integrity", + "Value": "sha256-U0aqpTZHl5fSSCGP60FSYOu/3L+VmeHRuOnQDRvBUoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tr.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/tr.p99zc5ekca.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/tr.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "426" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "p99zc5ekca" + }, + { + "Name": "integrity", + "Value": "sha256-k6e/d87/HfoW1glb9a1Jjr5vMfUO0kvqROvrGT9PAV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/tr.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.dzr3gq38lz.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001587301587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzr3gq38lz" + }, + { + "Name": "integrity", + "Value": "sha256-l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.dzr3gq38lz.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzr3gq38lz" + }, + { + "Name": "integrity", + "Value": "sha256-l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/uk.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.dzr3gq38lz.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dzr3gq38lz" + }, + { + "Name": "integrity", + "Value": "sha256-KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/uk.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001587301587" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l2ceKQE3iYa89Y1PrlJ6MNAqeiAQ7342pbJw+c/izao=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/uk.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/uk.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "629" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KbvJ3TRCrJbIiXvqxqvGM2EbcooRPT7Ohn7OuS4MpI8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "798" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.lzd74z7se0.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002070393375" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzd74z7se0" + }, + { + "Name": "integrity", + "Value": "sha256-b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.lzd74z7se0.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "798" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzd74z7se0" + }, + { + "Name": "integrity", + "Value": "sha256-b13ZpDGxfwT0IQnFUjWdO/sbaf95W/wM8xlhvP44Fz8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/vi.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/vi.lzd74z7se0.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/vi.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzd74z7se0" + }, + { + "Name": "integrity", + "Value": "sha256-7o2KL8aVwedmbNBzrM90IBwiI1TxDd5ke5FonYEgeOM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/vi.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.od72x9ld0f.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002114164905" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od72x9ld0f" + }, + { + "Name": "integrity", + "Value": "sha256-3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-CN.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.od72x9ld0f.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "770" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od72x9ld0f" + }, + { + "Name": "integrity", + "Value": "sha256-3KYQy5keW3x6V/Bv5/Ll4DmoddPTnTr19pcIQA1VG3U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-CN.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-CN.od72x9ld0f.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "472" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "od72x9ld0f" + }, + { + "Name": "integrity", + "Value": "sha256-ZJvwRZOZgEuig5I7ubannEyhZb+O6XzlgJwPnoSPXxg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-CN.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002188183807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.pzjde92gd1.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002188183807" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzjde92gd1" + }, + { + "Name": "integrity", + "Value": "sha256-i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.pzjde92gd1.js", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "709" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzjde92gd1" + }, + { + "Name": "integrity", + "Value": "sha256-i6fcfsELVa7NPsugfTJb9CjzGJvbT6/OkZfLiPZT4dI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/i18n/zh-TW.pzjde92gd1.js.gz", + "AssetFile": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pzjde92gd1" + }, + { + "Name": "integrity", + "Value": "sha256-8BRj1rm3Qc2acUoNaSybQ//F2L7+YscCfBjol7o5Ntg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/i18n/zh-TW.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.g0k0d3oo6f.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025879917" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0k0d3oo6f" + }, + { + "Name": "integrity", + "Value": "sha256-sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.g0k0d3oo6f.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "180386" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0k0d3oo6f" + }, + { + "Name": "integrity", + "Value": "sha256-sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.g0k0d3oo6f.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g0k0d3oo6f" + }, + { + "Name": "integrity", + "Value": "sha256-KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025879917" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "180386" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sAFB1caFNPTo9dNKlZyyYUQYuDFeVzdy4ZSQSyZ0eTQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.full.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "38639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KYu2Jm0DgkTHytItOukZCkPvB56MagbwtfWJ3oJtjsY=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.d7y8j4zbn3.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045376168" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d7y8j4zbn3" + }, + { + "Name": "integrity", + "Value": "sha256-1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.d7y8j4zbn3.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "79173" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d7y8j4zbn3" + }, + { + "Name": "integrity", + "Value": "sha256-1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.d7y8j4zbn3.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d7y8j4zbn3" + }, + { + "Name": "integrity", + "Value": "sha256-51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.full.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045376168" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.js", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "79173" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1y3pZqRejVXHRWp3vZzsc7KmvpKDt5A+Szx8NPbL5Ss=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.full.min.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.full.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22037" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-51X1SAr/zbwowRTKxIpfBPgR+VTZeVN3+El3bpycBy4=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.js", + "AssetFile": "adminlte/plugins/select2/js/select2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029330674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.js", + "AssetFile": "adminlte/plugins/select2/js/select2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "159697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.knoda3g6ak.js", + "AssetFile": "adminlte/plugins/select2/js/select2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000029330674" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "knoda3g6ak" + }, + { + "Name": "integrity", + "Value": "sha256-8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.knoda3g6ak.js", + "AssetFile": "adminlte/plugins/select2/js/select2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "159697" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "knoda3g6ak" + }, + { + "Name": "integrity", + "Value": "sha256-8Iv1WC444GLMiY2wlM4xeuVOEBJxA7LoUakpovNvuMo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.knoda3g6ak.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "34093" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "knoda3g6ak" + }, + { + "Name": "integrity", + "Value": "sha256-qIl+cMeH5C3b841YXFyrFz14G+CKA4gxUXXNvS8M8fQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.js", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000050228540" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.js", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.xe5rc2fxks.js", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000050228540" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=\"" + }, + { + "Name": "ETag", + "Value": "W/\"16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe5rc2fxks" + }, + { + "Name": "integrity", + "Value": "sha256-16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.xe5rc2fxks.js", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70852" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe5rc2fxks" + }, + { + "Name": "integrity", + "Value": "sha256-16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/select2/js/select2.min.xe5rc2fxks.js.gz", + "AssetFile": "adminlte/plugins/select2/js/select2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19908" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xe5rc2fxks" + }, + { + "Name": "integrity", + "Value": "sha256-A7R9lPUX8uZlJ/kNetAUmazaIojx5ccHuznw6mr662U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/select2/js/select2.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.1dq7wap0au.mjs", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000625000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dq7wap0au" + }, + { + "Name": "integrity", + "Value": "sha256-y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.mjs" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.1dq7wap0au.mjs", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6258" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dq7wap0au" + }, + { + "Name": "integrity", + "Value": "sha256-y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.mjs" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.1dq7wap0au.mjs.gz", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dq7wap0au" + }, + { + "Name": "integrity", + "Value": "sha256-fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.mjs.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.gp99a5ywnm.js", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000514933059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1941" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gp99a5ywnm" + }, + { + "Name": "integrity", + "Value": "sha256-ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.js" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.gp99a5ywnm.js", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7219" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gp99a5ywnm" + }, + { + "Name": "integrity", + "Value": "sha256-ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.js" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.gp99a5ywnm.js.gz", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1941" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gp99a5ywnm" + }, + { + "Name": "integrity", + "Value": "sha256-myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sparklines/sparkline.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.js", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000514933059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1941" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.js", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7219" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZDdT7EzdVQ0mQB8rHkXKvbBDQVh6SsKJVJCZgLWmneM=" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.js.gz", + "AssetFile": "adminlte/plugins/sparklines/sparkline.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1941" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-myJO3xgr+ftUSFjn9z6rUuBrHn1rXrgX6X2msiTWcvA=" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.mjs", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000625000000" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.mjs", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6258" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y2YhhVo/Fm+MF0gVJwAxftX7IhjmJhpRR2kzd+K018I=" + } + ] + }, + { + "Route": "adminlte/plugins/sparklines/sparkline.mjs.gz", + "AssetFile": "adminlte/plugins/sparklines/sparkline.mjs.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1599" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fI5fWuIvNkouvgyaz2K7q6k1YWVAfISmPXFZxS26eA4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.4rxl4mqdkk.eot", + "AssetFile": "adminlte/plugins/summernote/font/summernote.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12072" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"4OVKzab2aG6LyunRw1vhauxRbTiqxsNpsV0MqBufBn4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rxl4mqdkk" + }, + { + "Name": "integrity", + "Value": "sha256-4OVKzab2aG6LyunRw1vhauxRbTiqxsNpsV0MqBufBn4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/font/summernote.eot" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.eot", + "AssetFile": "adminlte/plugins/summernote/font/summernote.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12072" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"4OVKzab2aG6LyunRw1vhauxRbTiqxsNpsV0MqBufBn4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4OVKzab2aG6LyunRw1vhauxRbTiqxsNpsV0MqBufBn4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.f1utuhme5k.woff", + "AssetFile": "adminlte/plugins/summernote/font/summernote.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7428" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"rSC9E/CRNx7PKJMAKAkqzkti7Folm4yVm22PnX1AXSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f1utuhme5k" + }, + { + "Name": "integrity", + "Value": "sha256-rSC9E/CRNx7PKJMAKAkqzkti7Folm4yVm22PnX1AXSU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/font/summernote.woff" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.m5qwu3ppf6.woff2", + "AssetFile": "adminlte/plugins/summernote/font/summernote.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6156" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"auYrvu4DEzNjk9kB0FWwdJl4q94lI0OXlCYJ/vRSHB8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m5qwu3ppf6" + }, + { + "Name": "integrity", + "Value": "sha256-auYrvu4DEzNjk9kB0FWwdJl4q94lI0OXlCYJ/vRSHB8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/font/summernote.woff2" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.ozcyf1jlas.ttf", + "AssetFile": "adminlte/plugins/summernote/font/summernote.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11896" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"vAaZigJZsqS+QP0EPiEyT/kJIBG66MoNlju2M+3NMOE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ozcyf1jlas" + }, + { + "Name": "integrity", + "Value": "sha256-vAaZigJZsqS+QP0EPiEyT/kJIBG66MoNlju2M+3NMOE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/font/summernote.ttf" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.ttf", + "AssetFile": "adminlte/plugins/summernote/font/summernote.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11896" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"vAaZigJZsqS+QP0EPiEyT/kJIBG66MoNlju2M+3NMOE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vAaZigJZsqS+QP0EPiEyT/kJIBG66MoNlju2M+3NMOE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.woff", + "AssetFile": "adminlte/plugins/summernote/font/summernote.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7428" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"rSC9E/CRNx7PKJMAKAkqzkti7Folm4yVm22PnX1AXSU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rSC9E/CRNx7PKJMAKAkqzkti7Folm4yVm22PnX1AXSU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/font/summernote.woff2", + "AssetFile": "adminlte/plugins/summernote/font/summernote.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "6156" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"auYrvu4DEzNjk9kB0FWwdJl4q94lI0OXlCYJ/vRSHB8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-auYrvu4DEzNjk9kB0FWwdJl4q94lI0OXlCYJ/vRSHB8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.aehlwbvosf.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000310945274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehlwbvosf" + }, + { + "Name": "integrity", + "Value": "sha256-rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.aehlwbvosf.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehlwbvosf" + }, + { + "Name": "integrity", + "Value": "sha256-rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.aehlwbvosf.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aehlwbvosf" + }, + { + "Name": "integrity", + "Value": "sha256-rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000310945274" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10618" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rpjmiOOsCzykdj3PEJpezRS3u/CWtwrtg0R2JuZvn0k=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rmltZLwv6n8Oy4NyLf5f3zNT9VzSOtDvND363Be5NMc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.ijeehju55z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000428816467" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ijeehju55z" + }, + { + "Name": "integrity", + "Value": "sha256-Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.ijeehju55z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ijeehju55z" + }, + { + "Name": "integrity", + "Value": "sha256-Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.ijeehju55z.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ijeehju55z" + }, + { + "Name": "integrity", + "Value": "sha256-9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000428816467" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5835" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hj7kYnrZhNdg/aI2FF/WBZ6FRN5KtFxGRi3WKiCq7yA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2331" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9S34h2whJf1A9VYu6Axth3fl34Hv/CWGzPsZ+tJufjo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.hyrnjqjlze.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000304599452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3282" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyrnjqjlze" + }, + { + "Name": "integrity", + "Value": "sha256-twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.hyrnjqjlze.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyrnjqjlze" + }, + { + "Name": "integrity", + "Value": "sha256-twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.hyrnjqjlze.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3282" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hyrnjqjlze" + }, + { + "Name": "integrity", + "Value": "sha256-9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000304599452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3282" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10357" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-twf/5XP7OWztjMMJyd73DhVZ8KK6JO9IkqkIoGW5xik=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3282" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9u01K/WMlaRRMkuSzZO39x9FnM6rlYGC2E1xRAl6oe4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442477876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2259" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2259" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.sgf8lq6r93.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000442477876" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2259" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sgf8lq6r93" + }, + { + "Name": "integrity", + "Value": "sha256-TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.sgf8lq6r93.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5269" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sgf8lq6r93" + }, + { + "Name": "integrity", + "Value": "sha256-TP20WhdJmoo3/5w6obHeoUnHE35KM8S9G2t85kIo5Yg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.sgf8lq6r93.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2259" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sgf8lq6r93" + }, + { + "Name": "integrity", + "Value": "sha256-Zzx5LpCU0IHGosN+ZRARmJNNBSpukrecxDo2GqhHsCw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.gm465sdnct.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000300932892" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gm465sdnct" + }, + { + "Name": "integrity", + "Value": "sha256-GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.gm465sdnct.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10386" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gm465sdnct" + }, + { + "Name": "integrity", + "Value": "sha256-GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.gm465sdnct.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gm465sdnct" + }, + { + "Name": "integrity", + "Value": "sha256-KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000300932892" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10386" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GP7V77PuVkybcRvoCNF7zYWBroYSKRQW0s+2qyQjm+s=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3322" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KWLU4N2H9D6M6PJZbPrf1mIJHDBVXpic54MWmcshcHc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000407996736" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.suw4wijqh1.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000407996736" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suw4wijqh1" + }, + { + "Name": "integrity", + "Value": "sha256-VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.suw4wijqh1.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5596" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suw4wijqh1" + }, + { + "Name": "integrity", + "Value": "sha256-VNd8NDcW+XAJ8D8susl3e/+amN3CjxigROkpjcqpHAo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.suw4wijqh1.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2450" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "suw4wijqh1" + }, + { + "Name": "integrity", + "Value": "sha256-SS5v8qmIuo8O/gfvWTyiau0v5lNfV9q/jK8iz5I19Vc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000328623069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.mddor1mwsk.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000328623069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mddor1mwsk" + }, + { + "Name": "integrity", + "Value": "sha256-ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.mddor1mwsk.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9771" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mddor1mwsk" + }, + { + "Name": "integrity", + "Value": "sha256-ulhvbYYPmX8m1sKfCfVsjQFdRzqyLmatA/aQimAWRD8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.mddor1mwsk.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mddor1mwsk" + }, + { + "Name": "integrity", + "Value": "sha256-wZ4jrmUWz6SiqrhznqlqJyijEeJ/IHN4BNVVMTi/Ho8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000463606861" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.osw9lwwh5c.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000463606861" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "osw9lwwh5c" + }, + { + "Name": "integrity", + "Value": "sha256-SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.osw9lwwh5c.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4982" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "osw9lwwh5c" + }, + { + "Name": "integrity", + "Value": "sha256-SAM/JcXwxpIWGLN9quwr0xBPK9YlqfhpC5Ne4mnyvmA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.osw9lwwh5c.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2156" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "osw9lwwh5c" + }, + { + "Name": "integrity", + "Value": "sha256-G1GRIwJfLOVo9ivaL/nDyKLcM/Fed4tMgIrzkzJyjfY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000328947368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000461254613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.mge5z5dr1s.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000461254613" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mge5z5dr1s" + }, + { + "Name": "integrity", + "Value": "sha256-dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.mge5z5dr1s.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4681" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mge5z5dr1s" + }, + { + "Name": "integrity", + "Value": "sha256-dp+/RM1Q+10tkMDv2OmUyYQWKfqcdVAGBYWBoEjTii0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.mge5z5dr1s.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2167" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mge5z5dr1s" + }, + { + "Name": "integrity", + "Value": "sha256-lxa9edcTdzuLZqYN054tYLcL3ncTtQCv7Z6OgD7VDIA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.r70o33qyki.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000328947368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r70o33qyki" + }, + { + "Name": "integrity", + "Value": "sha256-6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.r70o33qyki.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9405" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r70o33qyki" + }, + { + "Name": "integrity", + "Value": "sha256-6fkprpwqYniCPdg4Zipzc5NaCstHOMPXzvM2GlJUppY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-cs-CZ.r70o33qyki.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r70o33qyki" + }, + { + "Name": "integrity", + "Value": "sha256-yChWq6Vbn2xy4uH76hgYS+pSibc2Haqv5hV7DbV3V9I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-cs-CZ.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334112930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000471920717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.sjs4u6bwi4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000471920717" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjs4u6bwi4" + }, + { + "Name": "integrity", + "Value": "sha256-eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.sjs4u6bwi4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4776" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjs4u6bwi4" + }, + { + "Name": "integrity", + "Value": "sha256-eDCsJXHCLuqYffEdVRREcmWwCWfR5iSy4Y611YCHEpY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.min.sjs4u6bwi4.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjs4u6bwi4" + }, + { + "Name": "integrity", + "Value": "sha256-96cnTnBiGBNulPNRTN+6p9xVdrXbw7xAuCZ2dmQD8r0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.uwsy2peqfl.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334112930" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwsy2peqfl" + }, + { + "Name": "integrity", + "Value": "sha256-IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.uwsy2peqfl.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9555" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwsy2peqfl" + }, + { + "Name": "integrity", + "Value": "sha256-IpPBl3i52QHzw3emRTcW9B+TUVNPShy0rN+6glV5GmI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-da-DK.uwsy2peqfl.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2992" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwsy2peqfl" + }, + { + "Name": "integrity", + "Value": "sha256-J0Dt0TXh9Kxe3sWb+WssJsESTI3U/HZ8N2XaBnGjvLw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-da-DK.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334448161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9597" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000477326969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.rtk1gfby9z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000477326969" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtk1gfby9z" + }, + { + "Name": "integrity", + "Value": "sha256-r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.rtk1gfby9z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4814" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtk1gfby9z" + }, + { + "Name": "integrity", + "Value": "sha256-r/tJV2lAOq9EUgJo3Rp3XsdwqUeLXlneG+gQMRjnOjw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.min.rtk1gfby9z.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rtk1gfby9z" + }, + { + "Name": "integrity", + "Value": "sha256-Fdzjw09aD9PujOJwpTQyEmEvLjEUtVf3FFkHhDEsxgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.q9g2ti8f6p.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334448161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9g2ti8f6p" + }, + { + "Name": "integrity", + "Value": "sha256-Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.q9g2ti8f6p.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9597" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9g2ti8f6p" + }, + { + "Name": "integrity", + "Value": "sha256-Ijxfmwj5EDSkfTN1cgo+bdPnndh/NsmrI7cQJm9zCig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-de-DE.q9g2ti8f6p.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q9g2ti8f6p" + }, + { + "Name": "integrity", + "Value": "sha256-TZq7lAbLM5M59rp53GeUv+ypwfAZrE9Km73DRMd1tV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-de-DE.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.dcdvinz53z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000274725275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dcdvinz53z" + }, + { + "Name": "integrity", + "Value": "sha256-TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.dcdvinz53z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "12008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dcdvinz53z" + }, + { + "Name": "integrity", + "Value": "sha256-TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.dcdvinz53z.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dcdvinz53z" + }, + { + "Name": "integrity", + "Value": "sha256-1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000274725275" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=\"" + }, + { + "Name": "ETag", + "Value": "W/\"TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "12008" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TdMdPLcs681Mlo/z7AFsagbJoEABQywQy1n+wdCCZZM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3639" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1e+OLejlwC1MMKEXi8Q8GPkUNfqaHo7WAGHU+eYq8Us=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000361141206" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7151" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.ohmk9qq9dt.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000361141206" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohmk9qq9dt" + }, + { + "Name": "integrity", + "Value": "sha256-3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.ohmk9qq9dt.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7151" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohmk9qq9dt" + }, + { + "Name": "integrity", + "Value": "sha256-3N/CZ1i3hO4X1rR052ez+tom9VXDIpoalTtztkkKVEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-el-GR.min.ohmk9qq9dt.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2768" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ohmk9qq9dt" + }, + { + "Name": "integrity", + "Value": "sha256-d21ha2CFoR+HBZS12U8shGfGNULgmfbr46EX9PnEoVo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-el-GR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321336761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.lzjb4t441i.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321336761" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzjb4t441i" + }, + { + "Name": "integrity", + "Value": "sha256-D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.lzjb4t441i.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10141" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzjb4t441i" + }, + { + "Name": "integrity", + "Value": "sha256-D24+NlDwTk7xj/ANB/1G5x4bg4wqKYB0bwtDCc4e6Ms=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.lzjb4t441i.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3111" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lzjb4t441i" + }, + { + "Name": "integrity", + "Value": "sha256-BWbrnDOtrvzz3+FUvrFW5NrGG/DTxqZPt1hBR+6/7Lc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000443852641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.q4zrdqcdxy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000443852641" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4zrdqcdxy" + }, + { + "Name": "integrity", + "Value": "sha256-mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.q4zrdqcdxy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5349" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4zrdqcdxy" + }, + { + "Name": "integrity", + "Value": "sha256-mr+MPhrJ5VMgn2D2fsseGqfm5rYEFvS5wGZZKlLL3Y0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-ES.min.q4zrdqcdxy.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2252" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "q4zrdqcdxy" + }, + { + "Name": "integrity", + "Value": "sha256-igydw58BbbbjqlJyIKTlxbOe/QAT7F3ezvq7ojA+BRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-ES.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.easpac1h3m.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000336927224" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "easpac1h3m" + }, + { + "Name": "integrity", + "Value": "sha256-dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.easpac1h3m.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "easpac1h3m" + }, + { + "Name": "integrity", + "Value": "sha256-dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.easpac1h3m.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "easpac1h3m" + }, + { + "Name": "integrity", + "Value": "sha256-CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000336927224" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-dqXuRmVZ0AFuTpzrOh3tlxe8vEmfJQKUcmPAOZdko7M=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2967" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CuEO1ovCwdbgmFLhHXqRU9s9nHA+sKhWs08j8X6nmjg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000474608448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.sdblvbwvt1.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000474608448" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sdblvbwvt1" + }, + { + "Name": "integrity", + "Value": "sha256-4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.sdblvbwvt1.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sdblvbwvt1" + }, + { + "Name": "integrity", + "Value": "sha256-4HfrGXraaBdZAI9IWWu1zUBsian3oiQ7gJKHhmuPe+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-es-EU.min.sdblvbwvt1.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2106" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sdblvbwvt1" + }, + { + "Name": "integrity", + "Value": "sha256-X5TkoTcs7L7ahwsRu0FxaDY3bLOJ3ihM9FAlVe46RkQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-es-EU.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308641975" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10208" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.a7ct8d5ytg.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000422297297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2367" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a7ct8d5ytg" + }, + { + "Name": "integrity", + "Value": "sha256-+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.a7ct8d5ytg.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a7ct8d5ytg" + }, + { + "Name": "integrity", + "Value": "sha256-+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.a7ct8d5ytg.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2367" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a7ct8d5ytg" + }, + { + "Name": "integrity", + "Value": "sha256-qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000422297297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2367" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5429" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+vBm/EcGuKaR+sBrps0U8i29+eogVJdBnTMrDiv5Q34=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2367" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qFfQdG7Hd3i40a023QfnVKvzQ0zTccKXsz01P2+awp8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.xo5zc056gn.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000308641975" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo5zc056gn" + }, + { + "Name": "integrity", + "Value": "sha256-kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.xo5zc056gn.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10208" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo5zc056gn" + }, + { + "Name": "integrity", + "Value": "sha256-kWP5Os3wVulu4+q9fVVscp14WUIQWgcPF1Ya5SEKBkk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fa-IR.xo5zc056gn.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3239" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xo5zc056gn" + }, + { + "Name": "integrity", + "Value": "sha256-44u8y5fW8c/XUxEj79vXjSbdV9TrFZCdBRAtQESnjFk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fa-IR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.9huj2i4ww4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000333444481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9huj2i4ww4" + }, + { + "Name": "integrity", + "Value": "sha256-DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.9huj2i4ww4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9huj2i4ww4" + }, + { + "Name": "integrity", + "Value": "sha256-DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.9huj2i4ww4.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9huj2i4ww4" + }, + { + "Name": "integrity", + "Value": "sha256-RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000333444481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DStVuq9DN48EoZpoTXCOzwk4prrqwcz6zKqBhp2aFno=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RXHW0Is80JdyxAe3tb2uNuC6B7Y+3VO2SlWQRlBKdS4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.2625xzqdb4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000476644423" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2097" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2625xzqdb4" + }, + { + "Name": "integrity", + "Value": "sha256-xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.2625xzqdb4.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2625xzqdb4" + }, + { + "Name": "integrity", + "Value": "sha256-xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.2625xzqdb4.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2097" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2625xzqdb4" + }, + { + "Name": "integrity", + "Value": "sha256-rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000476644423" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2097" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4708" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xlhez0z4o0++J65SZ7d6VafoAwI9vEbL/6KHO3D1+84=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2097" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rKWnUcvs8cVOgoi9PlcNwecCart49cJL7Fk4nf/qX9o=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322061192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.cau8nbdvhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000451263538" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cau8nbdvhx" + }, + { + "Name": "integrity", + "Value": "sha256-VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.cau8nbdvhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cau8nbdvhx" + }, + { + "Name": "integrity", + "Value": "sha256-VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.cau8nbdvhx.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cau8nbdvhx" + }, + { + "Name": "integrity", + "Value": "sha256-FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000451263538" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5237" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VF6rlo6QcMkPONZKzb+D0vyXH+eYGpsUquH5srZUkro=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2215" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FmZIG+L/sap3NJxeGfIO0vBXTJQ6zBaDAbp7HOvYe/w=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.qxnsanupc8.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322061192" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxnsanupc8" + }, + { + "Name": "integrity", + "Value": "sha256-Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.qxnsanupc8.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxnsanupc8" + }, + { + "Name": "integrity", + "Value": "sha256-Lo6d8KV9Ces7zY++7R0LmogTOuu/BL0LT3phs/HvWEs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-fr-FR.qxnsanupc8.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3104" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qxnsanupc8" + }, + { + "Name": "integrity", + "Value": "sha256-pogNVRHaRepqhbxJEC6+zcVB20cv6vqFXHbm6HV2wFg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-fr-FR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330687831" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3023" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9716" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3023" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.57iszgy874.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000467071462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "57iszgy874" + }, + { + "Name": "integrity", + "Value": "sha256-31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.57iszgy874.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4944" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "57iszgy874" + }, + { + "Name": "integrity", + "Value": "sha256-31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.57iszgy874.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "57iszgy874" + }, + { + "Name": "integrity", + "Value": "sha256-+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000467071462" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4944" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31G39b5HU1P6ZhLPRQzv6QtNDmckGy7cpqopZKEq2y8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2140" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+pt0LU6xTMH6AmbYGm2vFL65j/cy82bPQgYQpBr3kTc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.zza4r26lto.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330687831" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3023" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zza4r26lto" + }, + { + "Name": "integrity", + "Value": "sha256-r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.zza4r26lto.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9716" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zza4r26lto" + }, + { + "Name": "integrity", + "Value": "sha256-r/M+yRZ4YyBlj2ltnDVDWIJ5BkFnRaOhM+obcKPGYTM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-gl-ES.zza4r26lto.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3023" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zza4r26lto" + }, + { + "Name": "integrity", + "Value": "sha256-vX2Wn4mfPaQ/d49H1XDldyE5JTJegyGdu8rDOeXDOMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-gl-ES.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.4rk8zxjvue.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326583932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rk8zxjvue" + }, + { + "Name": "integrity", + "Value": "sha256-EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.4rk8zxjvue.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rk8zxjvue" + }, + { + "Name": "integrity", + "Value": "sha256-EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.4rk8zxjvue.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rk8zxjvue" + }, + { + "Name": "integrity", + "Value": "sha256-130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326583932" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9805" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EDIUaPlhZ25W3QhK3X131CeuC91CZwDfvSyVqOev28M=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3061" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-130SL2wLEYKEdKF/P9l3o+3EIHlYnhU1HEQKEffFH04=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.ia3smq4cfe.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000454545455" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ia3smq4cfe" + }, + { + "Name": "integrity", + "Value": "sha256-VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.ia3smq4cfe.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ia3smq4cfe" + }, + { + "Name": "integrity", + "Value": "sha256-VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.ia3smq4cfe.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ia3smq4cfe" + }, + { + "Name": "integrity", + "Value": "sha256-wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000454545455" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VkI1/iLnwSS2LfweEmrqm312fmVqZkDpI/x3BcZ49UA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-he-IL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wqrY6Z5QGiN12EF3+X9+JAYeuiSNiLHLJ/WzxDigGbQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.9efhl699tz.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000332446809" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9efhl699tz" + }, + { + "Name": "integrity", + "Value": "sha256-z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.9efhl699tz.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9efhl699tz" + }, + { + "Name": "integrity", + "Value": "sha256-z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.9efhl699tz.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9efhl699tz" + }, + { + "Name": "integrity", + "Value": "sha256-ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000332446809" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9498" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z7rY1UDnBrTzRaq2O8eUVLS35lBzBW8xpACbn6nrbII=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3007" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ii1GplPPyHaUw+hphZj3DiFvQxGbllYvEXHPboQ0R+E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000467945718" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.m74u9kvaju.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000467945718" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m74u9kvaju" + }, + { + "Name": "integrity", + "Value": "sha256-0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.m74u9kvaju.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4719" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m74u9kvaju" + }, + { + "Name": "integrity", + "Value": "sha256-0lndeTDF7jAOW64uUeTnOmyYSjwHP3fdNSGy56uU1dk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.m74u9kvaju.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2136" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m74u9kvaju" + }, + { + "Name": "integrity", + "Value": "sha256-zTdgVZRJdleLunTUMY2TiogLAqdG8++wduzWN1fispI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321440051" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9769" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.lkgljfffhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000321440051" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lkgljfffhx" + }, + { + "Name": "integrity", + "Value": "sha256-23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.lkgljfffhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9769" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lkgljfffhx" + }, + { + "Name": "integrity", + "Value": "sha256-23ntvtyiCc3SzutHUcHmqBFJjg3KCnE65KGuS8MGVRI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.lkgljfffhx.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3110" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lkgljfffhx" + }, + { + "Name": "integrity", + "Value": "sha256-S9k/kAViW6nGeA86K8OdJ37fRNa3s/mcwJ+4m8js7iI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000453514739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.qzhdpondfw.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000453514739" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzhdpondfw" + }, + { + "Name": "integrity", + "Value": "sha256-qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.qzhdpondfw.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4997" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzhdpondfw" + }, + { + "Name": "integrity", + "Value": "sha256-qpqDCFQjCTz4VJWhbBTcJm0ICV/axs2ODFm5zNUY4u0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.qzhdpondfw.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2204" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qzhdpondfw" + }, + { + "Name": "integrity", + "Value": "sha256-GJDj770c1U3WcO+LMkr0fwfsqbdhGICwGDia5VDrw3M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341763500" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.13olrjtfo0.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000487329435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13olrjtfo0" + }, + { + "Name": "integrity", + "Value": "sha256-09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.13olrjtfo0.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13olrjtfo0" + }, + { + "Name": "integrity", + "Value": "sha256-09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.13olrjtfo0.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "13olrjtfo0" + }, + { + "Name": "integrity", + "Value": "sha256-3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000487329435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4845" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-09tPkcDNvknJBgR+R5swBS7lfNPWxyNhFMf4nbhMft4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2051" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3eq1O9HvfTFx9xiz1tDp+yMZFgu2laDHx+R9Thg8HcU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.teyf1hq5cd.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000341763500" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "teyf1hq5cd" + }, + { + "Name": "integrity", + "Value": "sha256-Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.teyf1hq5cd.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9617" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "teyf1hq5cd" + }, + { + "Name": "integrity", + "Value": "sha256-Cz/XwDLvyqL+vHy52d1cirimWzwUiWXR+nENja2PKhI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-id-ID.teyf1hq5cd.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2925" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "teyf1hq5cd" + }, + { + "Name": "integrity", + "Value": "sha256-gia7ivkDh0kDr+2dcJI3lKrU2lbupgLrNl2p91YPw/I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-id-ID.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.hu9l9kauxc.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329055610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hu9l9kauxc" + }, + { + "Name": "integrity", + "Value": "sha256-50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.hu9l9kauxc.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hu9l9kauxc" + }, + { + "Name": "integrity", + "Value": "sha256-50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.hu9l9kauxc.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hu9l9kauxc" + }, + { + "Name": "integrity", + "Value": "sha256-1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329055610" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9792" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-50EiW2zkltfRGcTsRjVdhigaknvm6vicJ9Ns42ArtvY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3038" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1+TJk/P9urmrM3eV0yoaNgvOP47IJryzrb+SJui39uA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.ifzygrv88a.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462962963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifzygrv88a" + }, + { + "Name": "integrity", + "Value": "sha256-3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.ifzygrv88a.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5009" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifzygrv88a" + }, + { + "Name": "integrity", + "Value": "sha256-3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.ifzygrv88a.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifzygrv88a" + }, + { + "Name": "integrity", + "Value": "sha256-K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462962963" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5009" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3jNHh+SboZdcGVM+ePRpxUXQ6LHnGN0hjnro+6CaCwk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-it-IT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2159" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K4IqNTW5TRb1CDb6eyGvAUOBm//O3Faai515mgTP5S4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000309693404" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3228" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9407" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3228" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.ln3eq91sj9.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000309693404" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3228" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ln3eq91sj9" + }, + { + "Name": "integrity", + "Value": "sha256-ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.ln3eq91sj9.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9407" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ln3eq91sj9" + }, + { + "Name": "integrity", + "Value": "sha256-ATjZuFl1IYQ+rKjBDFRrSqXC1cgCsZ+9suykbl0SkBU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.ln3eq91sj9.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3228" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ln3eq91sj9" + }, + { + "Name": "integrity", + "Value": "sha256-j18RQTcQt3GRgyqMySyKnW9DYUOBmVdNIXHvneGe10Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.47wbz9959a.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429553265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47wbz9959a" + }, + { + "Name": "integrity", + "Value": "sha256-wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.47wbz9959a.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47wbz9959a" + }, + { + "Name": "integrity", + "Value": "sha256-wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.47wbz9959a.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "47wbz9959a" + }, + { + "Name": "integrity", + "Value": "sha256-IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000429553265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4635" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wA6pC/wpXiE1zffMh/liTy29+tD5CGenLrbVu/VNGhI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2327" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IQrNndDzjYHyOBte7ftkPfrz8m/jXphHi4L+iFzYRMY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.6dpkd4aep7.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000307881773" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dpkd4aep7" + }, + { + "Name": "integrity", + "Value": "sha256-lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.6dpkd4aep7.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dpkd4aep7" + }, + { + "Name": "integrity", + "Value": "sha256-lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.6dpkd4aep7.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6dpkd4aep7" + }, + { + "Name": "integrity", + "Value": "sha256-nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000307881773" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9926" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lmXGE3QrSuK4mWLBwo2/hhkRVTJdgSnNAs76RKs/Tgg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3247" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nXJSyX/S38dz3FlGnQswK9krfFEsvZzCnaNfB7Op/BQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.8g3i79xcka.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000426257460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8g3i79xcka" + }, + { + "Name": "integrity", + "Value": "sha256-+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.8g3i79xcka.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8g3i79xcka" + }, + { + "Name": "integrity", + "Value": "sha256-+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.8g3i79xcka.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8g3i79xcka" + }, + { + "Name": "integrity", + "Value": "sha256-PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000426257460" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5132" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+BwIgX0mlr5DXY6zWHVq1riA1Zmi2DB3+9r6iGmbxqE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2345" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PSuU9o2xhfYR/lVeOllFjXryQK0E1UZZLR901+bglGg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313971743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9826" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.5ly2i0bfb5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000432713111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ly2i0bfb5" + }, + { + "Name": "integrity", + "Value": "sha256-md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.5ly2i0bfb5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ly2i0bfb5" + }, + { + "Name": "integrity", + "Value": "sha256-md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.5ly2i0bfb5.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5ly2i0bfb5" + }, + { + "Name": "integrity", + "Value": "sha256-bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000432713111" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5047" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-md1Junhzd+FoTkIarYiny0KTzt7hDPhW/Txm4MYYaH4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2310" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bELW5FWka4ipE+CS7saixXLusXPsaNGa1DW8BbtN1i0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.n1e99b1f7o.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313971743" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1e99b1f7o" + }, + { + "Name": "integrity", + "Value": "sha256-pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.n1e99b1f7o.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9826" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1e99b1f7o" + }, + { + "Name": "integrity", + "Value": "sha256-pcuhu1hV88KSbWyECR7YGtOREA1cDgH+faQd3qe0l0U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LT.n1e99b1f7o.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n1e99b1f7o" + }, + { + "Name": "integrity", + "Value": "sha256-RzNsdZN9ynP3N97mLzg/Whz4AeqgdW3s3LjZmllvTsI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LT.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324149109" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.24e044gqzy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000447427293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24e044gqzy" + }, + { + "Name": "integrity", + "Value": "sha256-cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.24e044gqzy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24e044gqzy" + }, + { + "Name": "integrity", + "Value": "sha256-cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.24e044gqzy.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "24e044gqzy" + }, + { + "Name": "integrity", + "Value": "sha256-i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000447427293" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5028" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cts/re9KQ1VRkyKvAyTay/G/DtJ1L6N6LU50P1piu88=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2234" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i6UzjVAptb+85LKFa13gSvEj4ZDpqtHLWFg5ht78hkY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.o3rk1issau.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324149109" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3rk1issau" + }, + { + "Name": "integrity", + "Value": "sha256-zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.o3rk1issau.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9748" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3rk1issau" + }, + { + "Name": "integrity", + "Value": "sha256-zFBxWu/vv5TOQz8nP0F2kG26Th1McwBs815GNMaBH+o=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-lt-LV.o3rk1issau.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3084" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o3rk1issau" + }, + { + "Name": "integrity", + "Value": "sha256-IdK8nHwRyUG5ep3yEWFNYstBwPmLAzbEiTSedM4e9zo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-lt-LV.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000298062593" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10506" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.5qyxmr7d45.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000408329931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2448" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qyxmr7d45" + }, + { + "Name": "integrity", + "Value": "sha256-8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.5qyxmr7d45.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qyxmr7d45" + }, + { + "Name": "integrity", + "Value": "sha256-8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.5qyxmr7d45.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2448" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5qyxmr7d45" + }, + { + "Name": "integrity", + "Value": "sha256-BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000408329931" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2448" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8//ZdBi4alu2YXlKDTMpZiTp02ylVWQZBbv281Xk0pU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2448" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BrRMcbOQd5lhbErCyti1B9iEm4Fx6620RhzhtCFzSb4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.vkkzr8xbv9.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000298062593" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkkzr8xbv9" + }, + { + "Name": "integrity", + "Value": "sha256-EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.vkkzr8xbv9.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10506" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkkzr8xbv9" + }, + { + "Name": "integrity", + "Value": "sha256-EcLMlMux7OP6XusgOIYeYzegT0pSrTGk1ETfcJInDYQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-mn-MN.vkkzr8xbv9.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3354" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vkkzr8xbv9" + }, + { + "Name": "integrity", + "Value": "sha256-EyF26unOkhLH9nb95YQn/CUbcPaQ/Zjnnfpkoik1NFM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-mn-MN.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000333444481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470809793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4762" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.r35ctva8xy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470809793" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r35ctva8xy" + }, + { + "Name": "integrity", + "Value": "sha256-110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.r35ctva8xy.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4762" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r35ctva8xy" + }, + { + "Name": "integrity", + "Value": "sha256-110LuSL1wO89I0a365rwzJR3MJmo/7GBjkuW9/8ZrSQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.r35ctva8xy.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2123" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r35ctva8xy" + }, + { + "Name": "integrity", + "Value": "sha256-e8hoIZQdk3qQ+8cYGOyKQV2Xi+q1al8c6bQxqrJqK7w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.rz8tqivo94.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000333444481" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rz8tqivo94" + }, + { + "Name": "integrity", + "Value": "sha256-x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.rz8tqivo94.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9523" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rz8tqivo94" + }, + { + "Name": "integrity", + "Value": "sha256-x6SQoYMxEYB+WxT0q+BqD1WAT3uP68pFbXtn0JTHzCU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nb-NO.rz8tqivo94.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2998" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rz8tqivo94" + }, + { + "Name": "integrity", + "Value": "sha256-vBmQp6BG/g5/it4WOd8qFQ8eO7Jnyx/B2IQTqrWKzOI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nb-NO.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000331785003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9665" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470145745" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2126" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4893" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2126" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.rbxq40qtfs.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470145745" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2126" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rbxq40qtfs" + }, + { + "Name": "integrity", + "Value": "sha256-N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.rbxq40qtfs.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4893" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rbxq40qtfs" + }, + { + "Name": "integrity", + "Value": "sha256-N49dElv8wX0Lf1o5vRe5xS0esIkBGTA6iDuiu/6ntzM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.rbxq40qtfs.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2126" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rbxq40qtfs" + }, + { + "Name": "integrity", + "Value": "sha256-GnEnbgREvfag43BXl5VuTWKHlrp7kzaUdD0kiLDaLeQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.nhezwp8nt5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000331785003" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhezwp8nt5" + }, + { + "Name": "integrity", + "Value": "sha256-G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.nhezwp8nt5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9665" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhezwp8nt5" + }, + { + "Name": "integrity", + "Value": "sha256-G5g4iuXOmDt18fRysH1+wLRJ5dHg6S+E9ixqVu7kosE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-nl-NL.nhezwp8nt5.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3013" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nhezwp8nt5" + }, + { + "Name": "integrity", + "Value": "sha256-BJbLRTTmqP6Sq8I9hAr0z1J5dclgMCWWmbNI3P7NnKo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-nl-NL.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.69c2vmkawa.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326477310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69c2vmkawa" + }, + { + "Name": "integrity", + "Value": "sha256-igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.69c2vmkawa.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69c2vmkawa" + }, + { + "Name": "integrity", + "Value": "sha256-igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.69c2vmkawa.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "69c2vmkawa" + }, + { + "Name": "integrity", + "Value": "sha256-mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326477310" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9638" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-igHqedUy8IUWpyfuxNRGlZALWyB1Ur7VxxhYBejEtpk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3062" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mAMM13sCwnuCmE34i+qmd/l+Fw/KuAkdQHzAJD7tdf4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000460405157" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.s557plthw2.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000460405157" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s557plthw2" + }, + { + "Name": "integrity", + "Value": "sha256-4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.s557plthw2.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s557plthw2" + }, + { + "Name": "integrity", + "Value": "sha256-4FKU/jubA0AOK+kSuI+mGAyg7D5cDtSKhouXWOBjCkE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.s557plthw2.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2171" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "s557plthw2" + }, + { + "Name": "integrity", + "Value": "sha256-frVV+rJeP1aGip0mH37lxv7nSaCuqrJHjX/z1+faBf4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329272308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3036" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3036" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.m3s6hg3f6g.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329272308" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3036" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m3s6hg3f6g" + }, + { + "Name": "integrity", + "Value": "sha256-wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.m3s6hg3f6g.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9690" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m3s6hg3f6g" + }, + { + "Name": "integrity", + "Value": "sha256-wrSrZC3Rg5ttrMnK/3PAnts8aAStdil0gbgrb/NFQA0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.m3s6hg3f6g.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3036" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "m3s6hg3f6g" + }, + { + "Name": "integrity", + "Value": "sha256-xMCtEAzIjgPr4L51rLvhnlMDSMj3j2CdMlwmVgAsohY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464252553" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.vqre5jbh73.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464252553" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vqre5jbh73" + }, + { + "Name": "integrity", + "Value": "sha256-CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.vqre5jbh73.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4907" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vqre5jbh73" + }, + { + "Name": "integrity", + "Value": "sha256-CTsA33blyoqBCjgDxFGT30Z2F8B4+PuO/A7cXXnDdF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.vqre5jbh73.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2153" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vqre5jbh73" + }, + { + "Name": "integrity", + "Value": "sha256-FM/GCmFajIVM3SVhdhEpXk7CsDj7yxDcCiLDqHDPBik=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.bodrm0vfou.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329380764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bodrm0vfou" + }, + { + "Name": "integrity", + "Value": "sha256-+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.bodrm0vfou.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bodrm0vfou" + }, + { + "Name": "integrity", + "Value": "sha256-+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.bodrm0vfou.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bodrm0vfou" + }, + { + "Name": "integrity", + "Value": "sha256-RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329380764" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9811" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+wPg/a8PebJgNoz268QOpLxh2azizeHoyjgjPCQidN4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3035" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RrSoJe6uhoVouoWiZAwPaqD7aC018v6X18TICLfiPT0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.fxshqwtyr5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462107209" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fxshqwtyr5" + }, + { + "Name": "integrity", + "Value": "sha256-s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.fxshqwtyr5.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fxshqwtyr5" + }, + { + "Name": "integrity", + "Value": "sha256-s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.fxshqwtyr5.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fxshqwtyr5" + }, + { + "Name": "integrity", + "Value": "sha256-IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462107209" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5039" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s9azW/evxmhQXhNRaEQyLY728Yc0JtOjEypsG2oGCSg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2163" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IE0XpJw11clZW/ziPIu5Yzwvv9Ni5MUtN+IxXv/H3kU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329815303" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9858" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000463177397" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5086" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.uijn27apqv.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000463177397" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=\"" + }, + { + "Name": "ETag", + "Value": "W/\"lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uijn27apqv" + }, + { + "Name": "integrity", + "Value": "sha256-lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.uijn27apqv.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5086" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uijn27apqv" + }, + { + "Name": "integrity", + "Value": "sha256-lmAPqVqrrRBQdJo0QhVjWM3nc8W9Vb1HPcSKhkya55Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.uijn27apqv.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2158" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uijn27apqv" + }, + { + "Name": "integrity", + "Value": "sha256-yFMTsuPfYORhfykAOH2zXIPtGsY0KVVz4ATYleD0l80=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.qjzfm37aab.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000329815303" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjzfm37aab" + }, + { + "Name": "integrity", + "Value": "sha256-SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.qjzfm37aab.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9858" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjzfm37aab" + }, + { + "Name": "integrity", + "Value": "sha256-SuyCeIlXmU/PzxVAqeThJwdJCf/ROYwCXKKcydkK4P4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ro-RO.qjzfm37aab.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qjzfm37aab" + }, + { + "Name": "integrity", + "Value": "sha256-LWI4rtPCp8Orx5vtJbTuY4E9IT1Oxuyoqow/kfRyTrI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ro-RO.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000287191269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3481" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3481" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.kl4hd1nlmt.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000287191269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3481" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kl4hd1nlmt" + }, + { + "Name": "integrity", + "Value": "sha256-eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.kl4hd1nlmt.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kl4hd1nlmt" + }, + { + "Name": "integrity", + "Value": "sha256-eE0MlcODSRf+uDbTYCwuWaE7ArOXupSbQh+E5FM4t2E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.kl4hd1nlmt.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3481" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kl4hd1nlmt" + }, + { + "Name": "integrity", + "Value": "sha256-JWzcGSoKXyUKXKdLiwcPo3zkP/CDj8RJrOLjTx7s3Rk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000384467512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.zdh6mk16st.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000384467512" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zdh6mk16st" + }, + { + "Name": "integrity", + "Value": "sha256-eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.zdh6mk16st.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6850" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zdh6mk16st" + }, + { + "Name": "integrity", + "Value": "sha256-eSz+oZe9ztuXTAHlRsC3wHOuRJ/y0Q7jtBWUuSbsOHA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.zdh6mk16st.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2600" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zdh6mk16st" + }, + { + "Name": "integrity", + "Value": "sha256-66qT9GyczAPpGiqyy2gcLsyEffBaWWT9IMLh+lUEne0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.9nkm3v3ph2.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322893122" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9nkm3v3ph2" + }, + { + "Name": "integrity", + "Value": "sha256-BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.9nkm3v3ph2.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9nkm3v3ph2" + }, + { + "Name": "integrity", + "Value": "sha256-BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.9nkm3v3ph2.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9nkm3v3ph2" + }, + { + "Name": "integrity", + "Value": "sha256-y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000322893122" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9589" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BUHBhCY7knhPtp061FlgmJDCjj0H44OUK8XFABznGsM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y5eYTFe9++SrQOfNb7rkeUxkPkqnhLEitb72oVDSbf8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449034576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2226" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2226" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.njz9l61140.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000449034576" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2226" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "njz9l61140" + }, + { + "Name": "integrity", + "Value": "sha256-M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.njz9l61140.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "njz9l61140" + }, + { + "Name": "integrity", + "Value": "sha256-M3kysRtnLmBgDtgHJqq64ML0hH8AJeiRwighix8lA2c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.njz9l61140.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2226" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "njz9l61140" + }, + { + "Name": "integrity", + "Value": "sha256-2UOa//tH1hCo+orCcxokQWYmFATl0tG92QXcOHAt5Vo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330906684" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464468184" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.klpiazjn4z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000464468184" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klpiazjn4z" + }, + { + "Name": "integrity", + "Value": "sha256-6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.klpiazjn4z.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klpiazjn4z" + }, + { + "Name": "integrity", + "Value": "sha256-6Aeo52ks/qK/+7di4Cx6NbcMr24YHEb46+pYmNXGl+c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.klpiazjn4z.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2152" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "klpiazjn4z" + }, + { + "Name": "integrity", + "Value": "sha256-IdRBQBjB7msyDGZhGb9GO7vaV5yOBjKmkzQIwa06R8g=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.skmu9cx7lq.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330906684" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "skmu9cx7lq" + }, + { + "Name": "integrity", + "Value": "sha256-NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.skmu9cx7lq.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9622" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "skmu9cx7lq" + }, + { + "Name": "integrity", + "Value": "sha256-NAny6AnWxPT+QhPpTue1uY4fLosItmyl8fNeSDRRmMs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sl-SI.skmu9cx7lq.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3021" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "skmu9cx7lq" + }, + { + "Name": "integrity", + "Value": "sha256-sGGhX4A5kaUiMyvMq4tfj6x3guEdiEz1zWKTNwcZ0qs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sl-SI.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.jhi9pk3uev.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330360093" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhi9pk3uev" + }, + { + "Name": "integrity", + "Value": "sha256-1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.jhi9pk3uev.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhi9pk3uev" + }, + { + "Name": "integrity", + "Value": "sha256-1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.jhi9pk3uev.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jhi9pk3uev" + }, + { + "Name": "integrity", + "Value": "sha256-jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000330360093" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9508" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1/7O3PZZPQQv4BABXNYWcyjQO0YVYPonD0+co6m6NVA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3026" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jMBndzFFA7S2PJojmw1aEzUhLKgplP5GDO34wYARsW0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.fpa9945jp0.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462748727" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpa9945jp0" + }, + { + "Name": "integrity", + "Value": "sha256-c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.fpa9945jp0.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpa9945jp0" + }, + { + "Name": "integrity", + "Value": "sha256-c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.fpa9945jp0.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpa9945jp0" + }, + { + "Name": "integrity", + "Value": "sha256-pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000462748727" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4735" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+cKafcf9n4U7dlxbd3W4l/rVNFC3dAHvUSQEdAdnz4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2160" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pJMgU3lT1O7KHVV3iOrATTljFNvS2+ipi07hDe08neM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.7cclgkvgep.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305157156" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7cclgkvgep" + }, + { + "Name": "integrity", + "Value": "sha256-Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.7cclgkvgep.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10236" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7cclgkvgep" + }, + { + "Name": "integrity", + "Value": "sha256-Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.7cclgkvgep.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7cclgkvgep" + }, + { + "Name": "integrity", + "Value": "sha256-1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000305157156" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10236" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Sf7IAFV6NfXb3iSxMQO1IbSwnNutcbjoMiXnpoPCiWg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3276" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1XJka0LSsB7o6rnNaEnjdDCUxxX44TFpvVQqDujv7h4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.5v60477trr.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000414765657" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v60477trr" + }, + { + "Name": "integrity", + "Value": "sha256-Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.5v60477trr.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5457" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v60477trr" + }, + { + "Name": "integrity", + "Value": "sha256-Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.5v60477trr.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5v60477trr" + }, + { + "Name": "integrity", + "Value": "sha256-OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000414765657" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5457" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Py1RCjHK5GSjE1KIm5G2WKtz95K63J/w5oyGifalgCM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2410" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OaMDnWM49Zy+WP/6lf/QJVUuU+oWtge5lpoo8+ZFyDE=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000332778702" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3004" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3004" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.23hggirgse.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470366886" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hggirgse" + }, + { + "Name": "integrity", + "Value": "sha256-gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.23hggirgse.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hggirgse" + }, + { + "Name": "integrity", + "Value": "sha256-gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.23hggirgse.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hggirgse" + }, + { + "Name": "integrity", + "Value": "sha256-Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000470366886" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4751" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gv3bzpX+U1fl3VAhp+k0tWkYG3vn+X+xET4Y5rYiaS4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2125" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fcrx2Bcm56IKFk4eXzdz3/08EKJgLdKT/p9zobkxRdw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.yig25k8ydw.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000332778702" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3004" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yig25k8ydw" + }, + { + "Name": "integrity", + "Value": "sha256-1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.yig25k8ydw.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9530" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yig25k8ydw" + }, + { + "Name": "integrity", + "Value": "sha256-1koPeWfGvu+FTjNy21R6WjMujTClAss+MrduzXRxbFI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-sv-SE.yig25k8ydw.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3004" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yig25k8ydw" + }, + { + "Name": "integrity", + "Value": "sha256-44l53DfN1w80MJr9+X4i5oM6x3ZFPKPxld0IDkyTdc4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-sv-SE.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000311817898" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.7mhjm6kwws.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423728814" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mhjm6kwws" + }, + { + "Name": "integrity", + "Value": "sha256-ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.7mhjm6kwws.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6432" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mhjm6kwws" + }, + { + "Name": "integrity", + "Value": "sha256-ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.7mhjm6kwws.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7mhjm6kwws" + }, + { + "Name": "integrity", + "Value": "sha256-qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000423728814" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6432" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ETKJr0j6vQ+4ArRzFVK7iQ9SC0ElmjAL8AhSUsMLijc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2359" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qEP+Z3z8Zhf7GFDaaER1VtawTBhpOhhx8uoLkyYpGRY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.os0m79selo.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000311817898" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "os0m79selo" + }, + { + "Name": "integrity", + "Value": "sha256-eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.os0m79selo.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11211" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "os0m79selo" + }, + { + "Name": "integrity", + "Value": "sha256-eOe6v4UVBoLMlm8J2clj+97e+J4hIS94X/cmsP+/QWc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-ta-IN.os0m79selo.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "os0m79selo" + }, + { + "Name": "integrity", + "Value": "sha256-GcyrQPL1HsigU/5MiJgnKwc1OgkPrNL85XdJRZ5bsT8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-ta-IN.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.5026eqx7ou.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293944738" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5026eqx7ou" + }, + { + "Name": "integrity", + "Value": "sha256-W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.5026eqx7ou.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11826" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5026eqx7ou" + }, + { + "Name": "integrity", + "Value": "sha256-W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.5026eqx7ou.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5026eqx7ou" + }, + { + "Name": "integrity", + "Value": "sha256-SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000293944738" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11826" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-W2rLvh++dsWdbN9lFA8C9BBI99hb7e8oyBufb/wUy4E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3401" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SOhAKMtlRIcdMkUoE6XrEuhIvsWxZ0vNcQqFZ0LnEiA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000394477318" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7053" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.xyjcdbn3be.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000394477318" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xyjcdbn3be" + }, + { + "Name": "integrity", + "Value": "sha256-56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.xyjcdbn3be.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7053" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xyjcdbn3be" + }, + { + "Name": "integrity", + "Value": "sha256-56YM4MaCe/G5LNYxqctp4xdHmABxSJ8iu0IuCj0PdwA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-th-TH.min.xyjcdbn3be.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2534" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xyjcdbn3be" + }, + { + "Name": "integrity", + "Value": "sha256-Gdslikh4C5E0fa8P6ewIP32QxM+a/HTLkI1KZQalenk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-th-TH.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.epkt5pm0lz.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000323310702" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "epkt5pm0lz" + }, + { + "Name": "integrity", + "Value": "sha256-EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.epkt5pm0lz.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "epkt5pm0lz" + }, + { + "Name": "integrity", + "Value": "sha256-EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.epkt5pm0lz.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "epkt5pm0lz" + }, + { + "Name": "integrity", + "Value": "sha256-v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000323310702" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9881" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EpdLt3Y7snhdDBY1/IhfDso5Rt13MWSVP2mqcn9jtvI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-v1SzAQ4JsH2cIiD0vihtNtRCXZqweSNNrw489uNRHyo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000451059991" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5109" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.uwfxcjvvnl.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000451059991" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwfxcjvvnl" + }, + { + "Name": "integrity", + "Value": "sha256-zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.uwfxcjvvnl.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5109" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwfxcjvvnl" + }, + { + "Name": "integrity", + "Value": "sha256-zjad++yha9pcA5ZKY0FNTvboaHMjDPRQ6t+8BgMN9y8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.uwfxcjvvnl.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2216" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "uwfxcjvvnl" + }, + { + "Name": "integrity", + "Value": "sha256-o9kViA/fDc8wA3Ybmuc1TWaY2XBRYxCOJITlu+iNtNc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.i94mlncjie.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000298240382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i94mlncjie" + }, + { + "Name": "integrity", + "Value": "sha256-FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.i94mlncjie.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10641" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i94mlncjie" + }, + { + "Name": "integrity", + "Value": "sha256-FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.i94mlncjie.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i94mlncjie" + }, + { + "Name": "integrity", + "Value": "sha256-uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000298240382" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10641" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FjAcXbM6ysUi+Im/jp1SDnsWLt9vUiM1y1xSITOmg0Y=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3352" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uHPVLzAfm2iIGz0/Y++xXqVKj3IW61IErBKm6p7O5Nw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000401606426" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5862" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.llbm1qjuwd.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000401606426" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "llbm1qjuwd" + }, + { + "Name": "integrity", + "Value": "sha256-xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.llbm1qjuwd.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5862" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "llbm1qjuwd" + }, + { + "Name": "integrity", + "Value": "sha256-xyJ0c5Abz7jQRmSKiHxGh4e/M9fQceXPkVE/Z0syoD8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.llbm1qjuwd.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2489" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "llbm1qjuwd" + }, + { + "Name": "integrity", + "Value": "sha256-kzd7NLofRFqzHrf1efUxok5XTlrCR+zhQs0PlESAKok=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.be3pddqaqs.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000351617440" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "be3pddqaqs" + }, + { + "Name": "integrity", + "Value": "sha256-jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.be3pddqaqs.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "be3pddqaqs" + }, + { + "Name": "integrity", + "Value": "sha256-jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.be3pddqaqs.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "be3pddqaqs" + }, + { + "Name": "integrity", + "Value": "sha256-RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000351617440" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8652" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jYFGA2Fxd4bAFxpMypzKUK3K77p7AQwKMPSvmfDqKUg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2843" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-RW6LFl+6PoWuXcpbn30bw/8Fg/tSO7z+h9X2ySa/2+E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498256104" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.ph9fdm6xty.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498256104" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ph9fdm6xty" + }, + { + "Name": "integrity", + "Value": "sha256-zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.ph9fdm6xty.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ph9fdm6xty" + }, + { + "Name": "integrity", + "Value": "sha256-zcK3Sj61tSV4c/+hXAOIV57vlafOtKsMa1fOj8SA8R0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.ph9fdm6xty.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2006" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ph9fdm6xty" + }, + { + "Name": "integrity", + "Value": "sha256-JDiQquKZOg6djVOaqa5ElWHX8d1J8VMm5URbUfgCEiw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326051516" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.a3v5rdf5mh.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000456829603" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a3v5rdf5mh" + }, + { + "Name": "integrity", + "Value": "sha256-WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.a3v5rdf5mh.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4679" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a3v5rdf5mh" + }, + { + "Name": "integrity", + "Value": "sha256-WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.a3v5rdf5mh.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a3v5rdf5mh" + }, + { + "Name": "integrity", + "Value": "sha256-ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000456829603" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4679" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WlS6i0qMUQTG2jlQORjkwirx9ksAVTp6B6JGh2PL1bI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2188" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ekV8T7L7dhc69nbR9v+Cx4F2WB3zHcnAiI6UBJ+56tk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.n2cbv7x9ih.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000326051516" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n2cbv7x9ih" + }, + { + "Name": "integrity", + "Value": "sha256-31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.n2cbv7x9ih.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9458" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n2cbv7x9ih" + }, + { + "Name": "integrity", + "Value": "sha256-31zUxChVgnAxyBiLoe+19zJDSZS7MN96hogmCQ6jCIs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-vi-VN.n2cbv7x9ih.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3066" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n2cbv7x9ih" + }, + { + "Name": "integrity", + "Value": "sha256-+EOp9YQAe+Tm9vp/a34D5Btb7PY+ftUPW0BPjcdze8c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-vi-VN.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.3o4hjk657q.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334448161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3o4hjk657q" + }, + { + "Name": "integrity", + "Value": "sha256-45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.3o4hjk657q.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9115" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3o4hjk657q" + }, + { + "Name": "integrity", + "Value": "sha256-45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.3o4hjk657q.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3o4hjk657q" + }, + { + "Name": "integrity", + "Value": "sha256-/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000334448161" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9115" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-45RoPVyGLCkiixR0GUkOgUq0WOcOZOKReNH1w1cnZ10=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2989" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/o82ygzMVY7736BE5EUk957NKX2Oc9MUbk8qFex03M8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.1x2eguu7wj.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000469263257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x2eguu7wj" + }, + { + "Name": "integrity", + "Value": "sha256-uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.1x2eguu7wj.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x2eguu7wj" + }, + { + "Name": "integrity", + "Value": "sha256-uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.1x2eguu7wj.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1x2eguu7wj" + }, + { + "Name": "integrity", + "Value": "sha256-8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000469263257" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uxFJjJQ8qwjtJh+FUKa7w4Fd0Xi4PWFTl0/DzBf765w=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2130" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8Wg7eumlNarqg3vKZ+Am6Y/PxeIwlqK4qZHFuDK28zc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000320615582" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.fpr83i21gr.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000445434298" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2244" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpr83i21gr" + }, + { + "Name": "integrity", + "Value": "sha256-Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.fpr83i21gr.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpr83i21gr" + }, + { + "Name": "integrity", + "Value": "sha256-Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.fpr83i21gr.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2244" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fpr83i21gr" + }, + { + "Name": "integrity", + "Value": "sha256-97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000445434298" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2244" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4565" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qwkr1r9sK8kAtbOxiY6AAgEhKpqVTW7da/u3dxN0lXI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2244" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-97fkFZxBh+un5L/wn276qxgJt/SE5yWa4YribmnxUDw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.xtbynweqhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000320615582" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xtbynweqhx" + }, + { + "Name": "integrity", + "Value": "sha256-ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.xtbynweqhx.js", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xtbynweqhx" + }, + { + "Name": "integrity", + "Value": "sha256-ZceUO3DLPPNaW6Dvi+xziKZ6rInsL9F2V4RHAlEUmSs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/lang/summernote-zh-TW.xtbynweqhx.js.gz", + "AssetFile": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3118" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xtbynweqhx" + }, + { + "Name": "integrity", + "Value": "sha256-+SyK5/vdSf/BVCqqPtPL7pCoc2SAoy8KU33faXFlZsQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/lang/summernote-zh-TW.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.5t061pl49n.css", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5t061pl49n" + }, + { + "Name": "integrity", + "Value": "sha256-mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.5t061pl49n.css", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "270" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5t061pl49n" + }, + { + "Name": "integrity", + "Value": "sha256-mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.5t061pl49n.css.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5t061pl49n" + }, + { + "Name": "integrity", + "Value": "sha256-+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.005154639175" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "270" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mT4SunM/3F5sPlbI3fl4EbSZyptQ+cj/XBXcmDtROic=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+qtP1Z0KfkRYfZfPgLAIAIr1oeZyJ2ZToSFWRNYuNvI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000410172272" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8520" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.u0fmwk7lv1.js", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000410172272" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u0fmwk7lv1" + }, + { + "Name": "integrity", + "Value": "sha256-jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.u0fmwk7lv1.js", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8520" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u0fmwk7lv1" + }, + { + "Name": "integrity", + "Value": "sha256-jpXwx1kC/eUv31M+32cKlng6ieiEXjWyFGTbDiWUrAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.u0fmwk7lv1.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2437" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u0fmwk7lv1" + }, + { + "Name": "integrity", + "Value": "sha256-xMZuxu+2eCDDJFWynwB03A4TfGUHA0iC45qM1ETqoYU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.0idwcumu15.js", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000985221675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0idwcumu15" + }, + { + "Name": "integrity", + "Value": "sha256-qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.0idwcumu15.js", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0idwcumu15" + }, + { + "Name": "integrity", + "Value": "sha256-qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.0idwcumu15.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0idwcumu15" + }, + { + "Name": "integrity", + "Value": "sha256-rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000985221675" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2678" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qE8KdMf/b2z1CxcmdRkJL61L9SqHYKP75DGXTrqSR7I=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1014" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rOJ6hd3lNzvCfkADyUXNhXWDhG6vLa3aVd8K+IlS7ig=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000349528137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "10760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.rh049njogx.js", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000349528137" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh049njogx" + }, + { + "Name": "integrity", + "Value": "sha256-f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.rh049njogx.js", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "10760" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh049njogx" + }, + { + "Name": "integrity", + "Value": "sha256-f3BmeTkdfUkWX90F514I7WBenet8GhjmFste7ZWfJYM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.rh049njogx.js.gz", + "AssetFile": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2860" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rh049njogx" + }, + { + "Name": "integrity", + "Value": "sha256-jUqZj60Bpp/s0G6McqVUupoIAw2bLcYt+qAKSRkrrDU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.17fqplpswt.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015263680" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "17fqplpswt" + }, + { + "Name": "integrity", + "Value": "sha256-k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.17fqplpswt.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "343548" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "17fqplpswt" + }, + { + "Name": "integrity", + "Value": "sha256-k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.17fqplpswt.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "17fqplpswt" + }, + { + "Name": "integrity", + "Value": "sha256-5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.6qn3apvmw4.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000264760392" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3776" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qn3apvmw4" + }, + { + "Name": "integrity", + "Value": "sha256-IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.6qn3apvmw4.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qn3apvmw4" + }, + { + "Name": "integrity", + "Value": "sha256-IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.6qn3apvmw4.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3776" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6qn3apvmw4" + }, + { + "Name": "integrity", + "Value": "sha256-H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000264760392" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3776" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IqdWINt1+n6VMhBKt613jB+0Z5aYTshiwsHT4kf2JbY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3776" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-H7qd16XdHeMjHKsFOanu/RFgvNWFwEfRX6zyyrqRekQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015263680" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "343548" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k3PBCa1nQoiWYhkIbTBh6R0hplhF53+xQLkrM75uD1s=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65514" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5lcT3ZlG1M1JlYhZn3tpX/I3XHYjFyXCy7tNgvfK03c=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007423740" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "549157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.ufj9sy5cxd.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007423740" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ufj9sy5cxd" + }, + { + "Name": "integrity", + "Value": "sha256-qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.ufj9sy5cxd.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "549157" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ufj9sy5cxd" + }, + { + "Name": "integrity", + "Value": "sha256-qn6JuXVHnC54MBADhHDKyxJLO+y2LJwTS/8ksJg5wNM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.js.ufj9sy5cxd.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134702" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ufj9sy5cxd" + }, + { + "Name": "integrity", + "Value": "sha256-eUjCde+os0WFm8/pJWj5a89gHAiw3h11oLnHkx+Dolc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275862069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3624" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19403" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3624" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026731535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "151400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009167415" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "109081" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "427683" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "109081" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.wtjnd85wbg.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009167415" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "109081" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wtjnd85wbg" + }, + { + "Name": "integrity", + "Value": "sha256-JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.wtjnd85wbg.map", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "427683" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wtjnd85wbg" + }, + { + "Name": "integrity", + "Value": "sha256-JGFR1MOV38F/9Wm+K3yTdgD7AwbsvhnexG25q/vfpgk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.js.wtjnd85wbg.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "109081" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wtjnd85wbg" + }, + { + "Name": "integrity", + "Value": "sha256-4cjm4ngJsjJPScYE0rJveP5RzEjL/B+Ws1FuAn97duA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.mibyrzk3zy.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000275862069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3624" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mibyrzk3zy" + }, + { + "Name": "integrity", + "Value": "sha256-ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.mibyrzk3zy.css", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19403" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mibyrzk3zy" + }, + { + "Name": "integrity", + "Value": "sha256-ztUDTRE0Jq4ZR/ZKD+fivOhevPPuiXD0ua7M+3OE+t4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.mibyrzk3zy.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3624" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mibyrzk3zy" + }, + { + "Name": "integrity", + "Value": "sha256-qH632+VnQYmS7lmNJ8+IUGM7BMfco+2Cqi0o0UVJl5E=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.z77b3b8w9j.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026731535" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77b3b8w9j" + }, + { + "Name": "integrity", + "Value": "sha256-T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.z77b3b8w9j.js", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "151400" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77b3b8w9j" + }, + { + "Name": "integrity", + "Value": "sha256-T2if+YGETyhaDVGNu5YrPNKBQ19dOmRtf5RZG4FF0EI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-bs4.min.z77b3b8w9j.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-bs4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37408" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z77b3b8w9j" + }, + { + "Name": "integrity", + "Value": "sha256-riFGNTAfCP1cikce1WO+gi8hNDMQE7dJfGZmrSgDCyA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-bs4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000173250173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5771" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "31086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5771" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014482888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "69046" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "366080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "69046" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.maj58wv9x9.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000006975349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "143361" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maj58wv9x9" + }, + { + "Name": "integrity", + "Value": "sha256-EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.maj58wv9x9.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "586663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maj58wv9x9" + }, + { + "Name": "integrity", + "Value": "sha256-EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.maj58wv9x9.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "143361" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "maj58wv9x9" + }, + { + "Name": "integrity", + "Value": "sha256-vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000006975349" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "143361" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "586663" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-EldS72EhOoz7IcPBz2dmcWHCjClM1/pjHTgMKZZ6D64=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "143361" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vk565EI8wr5aBesmxYiCUn/YjLOhGNWVkzt7vXnYTjk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.8mkho5wx63.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000178794922" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5592" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mkho5wx63" + }, + { + "Name": "integrity", + "Value": "sha256-oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.8mkho5wx63.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "30447" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mkho5wx63" + }, + { + "Name": "integrity", + "Value": "sha256-oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.8mkho5wx63.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5592" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8mkho5wx63" + }, + { + "Name": "integrity", + "Value": "sha256-lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000178794922" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5592" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "30447" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-oA6D/yIi0I8ZwAwp6HmdjN7OoIOJ/6k+1SISncrEBQA=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5592" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lk9EUyMOr7GI5vFtUzunoGjKEmlqAHmW+EYWMlV5/j8=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.i12pygg1ox.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025149640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i12pygg1ox" + }, + { + "Name": "integrity", + "Value": "sha256-akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.i12pygg1ox.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "163199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i12pygg1ox" + }, + { + "Name": "integrity", + "Value": "sha256-akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.i12pygg1ox.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i12pygg1ox" + }, + { + "Name": "integrity", + "Value": "sha256-UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000025149640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=\"" + }, + { + "Name": "ETag", + "Value": "W/\"akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "163199" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-akdxCBX/AC32OK1I3jWkk8kJO9MRxLLWWvNGYSAlees=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.d8fovsvequ.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008635728" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115797" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8fovsvequ" + }, + { + "Name": "integrity", + "Value": "sha256-472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.d8fovsvequ.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "456334" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8fovsvequ" + }, + { + "Name": "integrity", + "Value": "sha256-472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.d8fovsvequ.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115797" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8fovsvequ" + }, + { + "Name": "integrity", + "Value": "sha256-qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "39761" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UJeALrN9/jdzizHCafDqnXzFBOmpleZbyOetSzVyUho=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000008635728" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115797" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "456334" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-472N8xRrT8yqxI6q3NpL2xQeCmcxlegooOKxIJs/bqY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115797" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qME/uxMB0ZUVPPaSHl/EEwJOzfUJ+TpK13pMajH7Gw4=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.wzn89qu32c.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000173250173" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5771" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wzn89qu32c" + }, + { + "Name": "integrity", + "Value": "sha256-hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.wzn89qu32c.css", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31086" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wzn89qu32c" + }, + { + "Name": "integrity", + "Value": "sha256-hOP9rNv+ZbyyU/MnyHomrfK1xQtTDjsk1q+8+qjwRzk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.wzn89qu32c.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5771" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wzn89qu32c" + }, + { + "Name": "integrity", + "Value": "sha256-oAfi4FjRNy2kNBuBDr8NadX8mBsZ8jJ1rteods8xDSA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.yyusqyxhts.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014482888" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "69046" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyusqyxhts" + }, + { + "Name": "integrity", + "Value": "sha256-NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.yyusqyxhts.js", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "366080" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyusqyxhts" + }, + { + "Name": "integrity", + "Value": "sha256-NgI3fvI/lrW0/JmO/ezIik/QrBU8bY5aAm6S/mYFTV8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote-lite.yyusqyxhts.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote-lite.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "69046" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yyusqyxhts" + }, + { + "Name": "integrity", + "Value": "sha256-E/J5GOEr0HtWh0g5OlBJpBtcejzgjBJ2Yi3pS87efdg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote-lite.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.0x3wdn8idc.js", + "AssetFile": "adminlte/plugins/summernote/summernote.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015277438" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0x3wdn8idc" + }, + { + "Name": "integrity", + "Value": "sha256-LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.0x3wdn8idc.js", + "AssetFile": "adminlte/plugins/summernote/summernote.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "343138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0x3wdn8idc" + }, + { + "Name": "integrity", + "Value": "sha256-LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.0x3wdn8idc.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0x3wdn8idc" + }, + { + "Name": "integrity", + "Value": "sha256-TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.css", + "AssetFile": "adminlte/plugins/summernote/summernote.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000267094017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.css", + "AssetFile": "adminlte/plugins/summernote/summernote.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19565" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js", + "AssetFile": "adminlte/plugins/summernote/summernote.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000015277438" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js", + "AssetFile": "adminlte/plugins/summernote/summernote.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "343138" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LDtxfceFRK+0FucLt/b9btSuYTt4gU5HLoCdd3SNAAk=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "65455" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-TwL8WvXsUJoN3lP5pTjl1OZehJAkiC1ovTxD18X0oyQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007433120" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "548548" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.tjkpt3suws.map", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000007433120" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tjkpt3suws" + }, + { + "Name": "integrity", + "Value": "sha256-SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.tjkpt3suws.map", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "548548" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tjkpt3suws" + }, + { + "Name": "integrity", + "Value": "sha256-SZ1KuoGlrqh8nUHnLZnQhOK/VJYTBHsfUTAMSzz2sKQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.js.tjkpt3suws.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "134532" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tjkpt3suws" + }, + { + "Name": "integrity", + "Value": "sha256-lpDOV4AVv/s/eDmbdU8F9flKFduzp0FSCPZn2IdCy0w=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.azsif58del.js", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026774479" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azsif58del" + }, + { + "Name": "integrity", + "Value": "sha256-yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.azsif58del.js", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "151094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azsif58del" + }, + { + "Name": "integrity", + "Value": "sha256-yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.azsif58del.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "azsif58del" + }, + { + "Name": "integrity", + "Value": "sha256-qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000278551532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.css", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "19266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.hcerk5whas.css", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000278551532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hcerk5whas" + }, + { + "Name": "integrity", + "Value": "sha256-n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.hcerk5whas.css", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19266" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hcerk5whas" + }, + { + "Name": "integrity", + "Value": "sha256-n3YISYddrZmGqrUgvpa3xzwZwcvvyaZco0PdOyUKA18=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.hcerk5whas.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3589" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hcerk5whas" + }, + { + "Name": "integrity", + "Value": "sha256-K/0mNOd42h/fK73BSXjuRbB297WrT1illF5UFdZUdN0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026774479" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "151094" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yjmp/uC+8IKjFgd6ThgYiDdIAEo8MqPvvpvzNXmavAY=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.0sghsm7od2.map", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009178270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "108952" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0sghsm7od2" + }, + { + "Name": "integrity", + "Value": "sha256-0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.0sghsm7od2.map", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "427187" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0sghsm7od2" + }, + { + "Name": "integrity", + "Value": "sha256-0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.0sghsm7od2.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "108952" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0sghsm7od2" + }, + { + "Name": "integrity", + "Value": "sha256-ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.chw0hn6shk.txt", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.chw0hn6shk.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "chw0hn6shk" + }, + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.009433962264" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "86" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-kI78amMWLM7S/0DGTUbEYV5xy85E5lPiHfQuEO9rcgw=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.LICENSE.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "105" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2ZrrmlWp3fGsHFe0RYQYtW1H0PmR+ZZz6dYlMD38lXo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37348" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qF3kNHbvIRAt+kKA2ZTK+WICidu6LmjP9CCe9UGClBo=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009178270" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "108952" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.map", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "427187" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0GxXB/GyRG3YbhJH5/wVjd4N8s9aCAe4igAMbJfOK7U=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.min.js.map.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "108952" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZmyKOTy2M0MBZbp7YBybhFfixlLdldAhfO+3K4EDId0=" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.qwjmuab6qv.css", + "AssetFile": "adminlte/plugins/summernote/summernote.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000267094017" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwjmuab6qv" + }, + { + "Name": "integrity", + "Value": "sha256-SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.qwjmuab6qv.css", + "AssetFile": "adminlte/plugins/summernote/summernote.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "19565" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwjmuab6qv" + }, + { + "Name": "integrity", + "Value": "sha256-SoRsuJGtx8o8G1K835XoXaHF55tqb9lPm1DnW4upFDc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.css" + } + ] + }, + { + "Route": "adminlte/plugins/summernote/summernote.qwjmuab6qv.css.gz", + "AssetFile": "adminlte/plugins/summernote/summernote.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwjmuab6qv" + }, + { + "Name": "integrity", + "Value": "sha256-910F4NkLulf4gg1Gd8B+tvpPZSOVKZzIqLI2i3odLoM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/summernote/summernote.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.aj01x7r63k.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000153940887" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aj01x7r63k" + }, + { + "Name": "integrity", + "Value": "sha256-CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.aj01x7r63k.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "45331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aj01x7r63k" + }, + { + "Name": "integrity", + "Value": "sha256-CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.aj01x7r63k.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "aj01x7r63k" + }, + { + "Name": "integrity", + "Value": "sha256-zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000153940887" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "45331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CtrXOc5iIdqLDVTCdHYSCEM8CPHZbB+Fo7Vlez4XsP8=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6495" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zI2ovWmuV4fkAOYrVrmzjEyXhEDq+8aeXCjoLF7neJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000174550532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5728" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34475" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5728" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.djn4pwpn0p.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000174550532" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5728" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djn4pwpn0p" + }, + { + "Name": "integrity", + "Value": "sha256-Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.djn4pwpn0p.css", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34475" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djn4pwpn0p" + }, + { + "Name": "integrity", + "Value": "sha256-Kdn8cW3YayN1SFg/Og5wyiItM0U/X7h1Mxw91Z2AcjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.djn4pwpn0p.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "5728" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "djn4pwpn0p" + }, + { + "Name": "integrity", + "Value": "sha256-zwljqHy86gjAkvjc4Iv/QrV6Fh1Atj87qI3NuK1I008=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.8otxn1ksun.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222172850" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8otxn1ksun" + }, + { + "Name": "integrity", + "Value": "sha256-eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.8otxn1ksun.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31195" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8otxn1ksun" + }, + { + "Name": "integrity", + "Value": "sha256-eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.8otxn1ksun.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8otxn1ksun" + }, + { + "Name": "integrity", + "Value": "sha256-nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.9bhl9814zb.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000036449790" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bhl9814zb" + }, + { + "Name": "integrity", + "Value": "sha256-G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.9bhl9814zb.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "121775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bhl9814zb" + }, + { + "Name": "integrity", + "Value": "sha256-G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.9bhl9814zb.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9bhl9814zb" + }, + { + "Name": "integrity", + "Value": "sha256-4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.3caznmfr98.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031562668" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3caznmfr98" + }, + { + "Name": "integrity", + "Value": "sha256-7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.3caznmfr98.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "146482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3caznmfr98" + }, + { + "Name": "integrity", + "Value": "sha256-7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.3caznmfr98.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3caznmfr98" + }, + { + "Name": "integrity", + "Value": "sha256-x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031562668" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "146482" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7aHTOathcizH9TQi121/9zvRYJ9mLujsj42/IyqM1BU=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-x+xfkmsNi+jOHIMAn3IgxsVT/1hhwQfUv7iibVyfHCg=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.6pbeukatnn.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000052375216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbeukatnn" + }, + { + "Name": "integrity", + "Value": "sha256-usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.6pbeukatnn.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "72672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbeukatnn" + }, + { + "Name": "integrity", + "Value": "sha256-usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.6pbeukatnn.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6pbeukatnn" + }, + { + "Name": "integrity", + "Value": "sha256-/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000052375216" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "72672" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-usBWAqwbZlRGP5W4ju60j6su+1+Tcb2sgVbwgoLWDQc=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.all.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19092" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/GDN0FCghkcsnQEsoHyr23O0OHQTltmurovCyvz1ZyM=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222172850" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "31195" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eG92wm3+pNMOplS4GIJUmomXj4FfH/Rx5Yjmjki0ZDs=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4500" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nPPcjbt6V0xYER1ASUhPSBbnNsWlfhFskWNNy4ErNvs=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000036449790" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "121775" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G9y9Q6YNzw3OBCq/CbAPsEp7z0zr/ih8EGS02s+tOw4=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "27434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4C9sjhzDc6wKzHES/tTF4hRDOr0ECWKfTm7r8UJLEWU=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000237079184" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4217" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "24454" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4217" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067254018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "47965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.mp8obrq8fg.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000237079184" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4217" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mp8obrq8fg" + }, + { + "Name": "integrity", + "Value": "sha256-5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.mp8obrq8fg.css", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "24454" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mp8obrq8fg" + }, + { + "Name": "integrity", + "Value": "sha256-5uZsN51mZNPiwsxlFtZveRchbCHcHkPoIjG7N2Y4rIU=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.mp8obrq8fg.css.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4217" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mp8obrq8fg" + }, + { + "Name": "integrity", + "Value": "sha256-7/zBI4jo64CgMXFu1SxAfKx1AvV5APas3cMXktPZXJ0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.yplx3wijtz.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000067254018" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yplx3wijtz" + }, + { + "Name": "integrity", + "Value": "sha256-ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.yplx3wijtz.js", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "47965" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yplx3wijtz" + }, + { + "Name": "integrity", + "Value": "sha256-ytBPHlXtZUPR29lnLm6p+dZYwAU+g0XpyMsWD4i0lH4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/sweetalert2/sweetalert2.min.yplx3wijtz.js.gz", + "AssetFile": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14868" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yplx3wijtz" + }, + { + "Name": "integrity", + "Value": "sha256-sTUPGZ3ZYtNPjHmsjjUNxAU63SNTbJFO9ZHaOStrhKA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/sweetalert2/sweetalert2.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000496524330" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2013" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "13368" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2013" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.e56ldtv76u.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000496524330" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2013" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e56ldtv76u" + }, + { + "Name": "integrity", + "Value": "sha256-nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.e56ldtv76u.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13368" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e56ldtv76u" + }, + { + "Name": "integrity", + "Value": "sha256-nnz6XvUoKU+KpcAWokLTviBaTR2D8LQ6dgSVpkNfM94=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.e56ldtv76u.css.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2013" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e56ldtv76u" + }, + { + "Name": "integrity", + "Value": "sha256-6kCFRnGtTyQBSWeyp7nQkTzwG9rQlVKOl9sSuVtJ43M=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.0plyx7y3kp.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000524383849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1906" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0plyx7y3kp" + }, + { + "Name": "integrity", + "Value": "sha256-VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.0plyx7y3kp.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "11967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0plyx7y3kp" + }, + { + "Name": "integrity", + "Value": "sha256-VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.0plyx7y3kp.css.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1906" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0plyx7y3kp" + }, + { + "Name": "integrity", + "Value": "sha256-LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000524383849" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1906" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "11967" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VL9T9QfjO/EGCzuu5CtTWWzIksAkGDTs+fO51ALqMjg=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1906" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LTn5xZq/ZZjBFQB/6a7BurRGucvMrhkRRj5YHZ2mQEY=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.1dxtyb37x5.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000051612903" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dxtyb37x5" + }, + { + "Name": "integrity", + "Value": "sha256-21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.1dxtyb37x5.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "113235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dxtyb37x5" + }, + { + "Name": "integrity", + "Value": "sha256-21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.1dxtyb37x5.js.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1dxtyb37x5" + }, + { + "Name": "integrity", + "Value": "sha256-yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000051612903" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "113235" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-21O4JP6se6fuz1LgWY4MMytNHq53U6JEugvSSHLEsJ8=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19374" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yoGHQffw8TedwJTmgdv/k7rh3NWEvyKcNkOVF6n6aEM=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074649149" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "61593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.sni508cqz3.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074649149" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sni508cqz3" + }, + { + "Name": "integrity", + "Value": "sha256-uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.sni508cqz3.js", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "61593" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sni508cqz3" + }, + { + "Name": "integrity", + "Value": "sha256-uE3vOLooa0gPBylbimXggux1GAC8XT80pB/QIvNXoxo=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.sni508cqz3.js.gz", + "AssetFile": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13395" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sni508cqz3" + }, + { + "Name": "integrity", + "Value": "sha256-uPOZc4wXaDWisg4KjkAO94XK6yTpNhXvaLFOlfFRZNw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.css", + "AssetFile": "adminlte/plugins/toastr/toastr.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324991875" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.css", + "AssetFile": "adminlte/plugins/toastr/toastr.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "7803" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.css.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.jw5ahztbe4.map", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000155642023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6424" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jw5ahztbe4" + }, + { + "Name": "integrity", + "Value": "sha256-nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.jw5ahztbe4.map", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "25633" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jw5ahztbe4" + }, + { + "Name": "integrity", + "Value": "sha256-nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.js.map" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.jw5ahztbe4.map.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6424" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jw5ahztbe4" + }, + { + "Name": "integrity", + "Value": "sha256-jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.js.map.gz" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.map", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000155642023" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6424" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.map", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "25633" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nRbxbT2OMR+pVY0F1YTTON6te+8/bDRLNNEFXtkWbbM=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.js.map.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6424" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jSoleX3KioNR19C51r/uoKnt4wPD3pEJes2Ftx6ltZw=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.css", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000352485019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2836" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.css", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6454" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.css.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2836" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.fuwkiubrsj.css", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000352485019" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2836" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fuwkiubrsj" + }, + { + "Name": "integrity", + "Value": "sha256-R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.fuwkiubrsj.css", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6454" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fuwkiubrsj" + }, + { + "Name": "integrity", + "Value": "sha256-R91pD48xW+oHbpJYGn5xR0Q7tMhH4xOrWn1QqMRINtA=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.fuwkiubrsj.css.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2836" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fuwkiubrsj" + }, + { + "Name": "integrity", + "Value": "sha256-s3aP1Ld4V3EuLcteZCudqC8ihpjbk8loQFvpxMvGCmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.js", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000495294700" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2018" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.js", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "5253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.js.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2018" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.t2jsbw6zax.js", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000495294700" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2018" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2jsbw6zax" + }, + { + "Name": "integrity", + "Value": "sha256-ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.t2jsbw6zax.js", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "5253" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2jsbw6zax" + }, + { + "Name": "integrity", + "Value": "sha256-ldqN9/OcVFZtetwyZMvgDHiiWga1hRgUiY2ML1BBLF0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.min.t2jsbw6zax.js.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2018" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "t2jsbw6zax" + }, + { + "Name": "integrity", + "Value": "sha256-HFOB9sDk/fjrQcyL36TRmcCTitNoPjtuDu9evRVhhw0=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.xk3qo5andv.css", + "AssetFile": "adminlte/plugins/toastr/toastr.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000324991875" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xk3qo5andv" + }, + { + "Name": "integrity", + "Value": "sha256-X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.css" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.xk3qo5andv.css", + "AssetFile": "adminlte/plugins/toastr/toastr.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "7803" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xk3qo5andv" + }, + { + "Name": "integrity", + "Value": "sha256-X7+pM8lU9VGHQLKWtMM5cRBOApFzVgQviIaQsFK7/aQ=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.css" + } + ] + }, + { + "Route": "adminlte/plugins/toastr/toastr.xk3qo5andv.css.gz", + "AssetFile": "adminlte/plugins/toastr/toastr.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3076" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "xk3qo5andv" + }, + { + "Name": "integrity", + "Value": "sha256-We/c7MKYgTa/uFQ+uiMunvl4aq0D5Uo64jubc3HDeK4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/toastr/toastr.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.5z0cpq88wd.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034063426" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5z0cpq88wd" + }, + { + "Name": "integrity", + "Value": "sha256-8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.cjs.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.5z0cpq88wd.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "105351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5z0cpq88wd" + }, + { + "Name": "integrity", + "Value": "sha256-8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.cjs.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.5z0cpq88wd.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5z0cpq88wd" + }, + { + "Name": "integrity", + "Value": "sha256-/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.cjs.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034063426" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "105351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8XAMdcQc1HZJLeHD/iRoH2DT3ZEl3pNsDfudk90lNmY=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.cjs.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.cjs.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29356" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/+NSMMe2rdXnPY5nmVLL8inypPtMbZMEcfzA9fTygAI=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034077356" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "105332" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.yq2vhh58zx.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034077356" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yq2vhh58zx" + }, + { + "Name": "integrity", + "Value": "sha256-qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.esm.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.yq2vhh58zx.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "105332" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yq2vhh58zx" + }, + { + "Name": "integrity", + "Value": "sha256-qgSj4ufKcO4R38NKo0nt26PIc+bILomgsmhub4L1FXk=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.esm.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.esm.yq2vhh58zx.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.esm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "29344" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "yq2vhh58zx" + }, + { + "Name": "integrity", + "Value": "sha256-f756jJ7Nw3l9OwGCxbYdqGYafq7HshBfBX8GxJ/dh+Q=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.esm.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.3ikm0y6glo.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033251313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ikm0y6glo" + }, + { + "Name": "integrity", + "Value": "sha256-tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.3ikm0y6glo.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "110115" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ikm0y6glo" + }, + { + "Name": "integrity", + "Value": "sha256-tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.3ikm0y6glo.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3ikm0y6glo" + }, + { + "Name": "integrity", + "Value": "sha256-eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000033251313" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "110115" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tcby2BagU2/DQ5fJDVKbcFbsovN3Y1mIrj8nCr3CkzY=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "30073" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-eLzgWOZy8YI5X2u+V49n4up9tAjyIQcyyCr7H9mcrTw=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.d8uwo8d1rz.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062123377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8uwo8d1rz" + }, + { + "Name": "integrity", + "Value": "sha256-81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.d8uwo8d1rz.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "36289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8uwo8d1rz" + }, + { + "Name": "integrity", + "Value": "sha256-81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.min.js" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.d8uwo8d1rz.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "d8uwo8d1rz" + }, + { + "Name": "integrity", + "Value": "sha256-lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.iife.min.js.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062123377" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.js", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "36289" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-81ajV6kW/xCcmE8GlCNWH98usGVcS1XH4/d/n4SP4mM=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.iife.min.js.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.iife.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "16096" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lRaKjoltrFu4gMfWbmQvS0VbINtDrsWPgoBYLKJqLr4=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.1abka3fkni.css", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001324503311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1abka3fkni" + }, + { + "Name": "integrity", + "Value": "sha256-52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.1abka3fkni.css", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1823" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1abka3fkni" + }, + { + "Name": "integrity", + "Value": "sha256-52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.min.css" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.1abka3fkni.css.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1abka3fkni" + }, + { + "Name": "integrity", + "Value": "sha256-WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=" + }, + { + "Name": "label", + "Value": "adminlte/plugins/uplot/uPlot.min.css.gz" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.css", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001324503311" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.css", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1823" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-52OD/V+PrMDxVrbSjjp2eN+5kI+j49sF9rFQsY+sFy8=" + } + ] + }, + { + "Route": "adminlte/plugins/uplot/uPlot.min.css.gz", + "AssetFile": "adminlte/plugins/uplot/uPlot.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "754" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WFJnf8Zdbom0LLq8AeRfZFPtb95dhI0cccPYKH5/fjI=" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.zo26shrg4i.csv", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.zo26shrg4i.csv", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv" + } + ] + }, + { + "Route": "app_data/docs/14efef618f8445aab3aad90c51526c00.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/14efef618f8445aab3aad90c51526c00.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.zo26shrg4i.csv", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.zo26shrg4i.csv", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv" + } + ] + }, + { + "Route": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:20:47 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.zo26shrg4i.csv", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.zo26shrg4i.csv", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv" + } + ] + }, + { + "Route": "app_data/docs/50ab4030daf843a6be906c4055276e63.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:27 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/50ab4030daf843a6be906c4055276e63.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.zo26shrg4i.csv", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.zo26shrg4i.csv", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv" + } + ] + }, + { + "Route": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:14:49 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.zo26shrg4i.csv", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.zo26shrg4i.csv", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv" + } + ] + }, + { + "Route": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:16 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.zo26shrg4i.csv", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.zo26shrg4i.csv", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv" + } + ] + }, + { + "Route": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.zo26shrg4i.csv", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.zo26shrg4i.csv", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv" + } + ] + }, + { + "Route": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:12:03 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.zo26shrg4i.csv", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.zo26shrg4i.csv", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv" + } + ] + }, + { + "Route": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:53 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.zo26shrg4i.csv", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.zo26shrg4i.csv", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv" + } + ] + }, + { + "Route": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.zo26shrg4i.csv", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.zo26shrg4i.csv", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv" + } + ] + }, + { + "Route": "app_data/docs/af6a2973f5c54149bce9c5616308e791.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:54 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/af6a2973f5c54149bce9c5616308e791.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.zo26shrg4i.csv", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.zo26shrg4i.csv", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv" + } + ] + }, + { + "Route": "app_data/docs/b05059e7065c4226b69a03a9903444cc.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:21:19 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/b05059e7065c4226b69a03a9903444cc.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.zo26shrg4i.csv", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.zo26shrg4i.csv", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv" + } + ] + }, + { + "Route": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.zo26shrg4i.csv", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.zo26shrg4i.csv", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv" + } + ] + }, + { + "Route": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.zo26shrg4i.csv", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.zo26shrg4i.csv", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv" + } + ] + }, + { + "Route": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.zo26shrg4i.csv", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.zo26shrg4i.csv", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv" + } + ] + }, + { + "Route": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:23:44 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.zo26shrg4i.csv", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.zo26shrg4i.csv", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv" + } + ] + }, + { + "Route": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 07:39:43 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.zo26shrg4i.csv", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.zo26shrg4i.csv", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv" + } + ] + }, + { + "Route": "app_data/docs/d1c2c2580596409a899dba12174e05e8.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/d1c2c2580596409a899dba12174e05e8.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.csv", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.csv", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.zo26shrg4i.csv", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/d798003427e24dd88e708e590ec30589.csv" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.zo26shrg4i.csv", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/d798003427e24dd88e708e590ec30589.csv" + } + ] + }, + { + "Route": "app_data/docs/d798003427e24dd88e708e590ec30589.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/d798003427e24dd88e708e590ec30589.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv" + } + ] + }, + { + "Route": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Tue, 25 Mar 2025 08:49:30 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv" + } + ] + }, + { + "Route": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.zo26shrg4i.csv", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv" + } + ] + }, + { + "Route": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:15:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.zo26shrg4i.csv", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.zo26shrg4i.csv", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv" + } + ] + }, + { + "Route": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:09:02 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv" + } + ] + }, + { + "Route": "app_data/docs/f23ed3dfa80c464391ed01408145f272.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/f23ed3dfa80c464391ed01408145f272.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv" + } + ] + }, + { + "Route": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:18:09 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.zo26shrg4i.csv", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv" + } + ] + }, + { + "Route": "app_data/docs/f8150866b789483ea9272586b8ae863a.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:22:29 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/f8150866b789483ea9272586b8ae863a.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.zo26shrg4i.csv", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.008620689655" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.zo26shrg4i.csv", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "149" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-I4NtzT97mTFkz6VumWCJh1j3Uk9vIhpF+S7TqfEbkTA=" + }, + { + "Name": "label", + "Value": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv" + } + ] + }, + { + "Route": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.zo26shrg4i.csv.gz", + "AssetFile": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "115" + }, + { + "Name": "Content-Type", + "Value": "text/csv" + }, + { + "Name": "ETag", + "Value": "\"HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:08:45 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zo26shrg4i" + }, + { + "Name": "integrity", + "Value": "sha256-HCdxdWANdgTMI1OcxEe5k0m2Cgf2kJ9gxU4NzdPyycM=" + }, + { + "Name": "label", + "Value": "app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv.gz" + } + ] + }, + { + "Route": "app_data/docs/keep.3r8b2a0bt1.txt", + "AssetFile": "app_data/docs/keep.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "app_data/docs/keep.txt" + } + ] + }, + { + "Route": "app_data/docs/keep.3r8b2a0bt1.txt", + "AssetFile": "app_data/docs/keep.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "app_data/docs/keep.txt" + } + ] + }, + { + "Route": "app_data/docs/keep.3r8b2a0bt1.txt.gz", + "AssetFile": "app_data/docs/keep.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + }, + { + "Name": "label", + "Value": "app_data/docs/keep.txt.gz" + } + ] + }, + { + "Route": "app_data/docs/keep.txt", + "AssetFile": "app_data/docs/keep.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "app_data/docs/keep.txt", + "AssetFile": "app_data/docs/keep.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "app_data/docs/keep.txt.gz", + "AssetFile": "app_data/docs/keep.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + } + ] + }, + { + "Route": "app_data/images/c587a28715d34524962fad9aa6670365.74wai20k9f.jpg", + "AssetFile": "app_data/images/c587a28715d34524962fad9aa6670365.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15124" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"6aTjN8e3MiS2H19/vthqV0LMHd160Nzh9vG/XmkfEXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "74wai20k9f" + }, + { + "Name": "integrity", + "Value": "sha256-6aTjN8e3MiS2H19/vthqV0LMHd160Nzh9vG/XmkfEXA=" + }, + { + "Name": "label", + "Value": "app_data/images/c587a28715d34524962fad9aa6670365.jpg" + } + ] + }, + { + "Route": "app_data/images/c587a28715d34524962fad9aa6670365.jpg", + "AssetFile": "app_data/images/c587a28715d34524962fad9aa6670365.jpg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15124" + }, + { + "Name": "Content-Type", + "Value": "image/jpeg" + }, + { + "Name": "ETag", + "Value": "\"6aTjN8e3MiS2H19/vthqV0LMHd160Nzh9vG/XmkfEXA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 22 Mar 2025 06:05:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6aTjN8e3MiS2H19/vthqV0LMHd160Nzh9vG/XmkfEXA=" + } + ] + }, + { + "Route": "app_data/images/keep.3r8b2a0bt1.txt", + "AssetFile": "app_data/images/keep.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "app_data/images/keep.txt" + } + ] + }, + { + "Route": "app_data/images/keep.3r8b2a0bt1.txt", + "AssetFile": "app_data/images/keep.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "app_data/images/keep.txt" + } + ] + }, + { + "Route": "app_data/images/keep.3r8b2a0bt1.txt.gz", + "AssetFile": "app_data/images/keep.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + }, + { + "Name": "label", + "Value": "app_data/images/keep.txt.gz" + } + ] + }, + { + "Route": "app_data/images/keep.txt", + "AssetFile": "app_data/images/keep.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "app_data/images/keep.txt", + "AssetFile": "app_data/images/keep.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "app_data/images/keep.txt.gz", + "AssetFile": "app_data/images/keep.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + } + ] + }, + { + "Route": "default-avatar.oa21rsgvdu.png", + "AssetFile": "default-avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "103215" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4GyeqUhEaQhao84C6v8uJ83gVd+RGtxYDOvyRqk3dKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oa21rsgvdu" + }, + { + "Name": "integrity", + "Value": "sha256-4GyeqUhEaQhao84C6v8uJ83gVd+RGtxYDOvyRqk3dKU=" + }, + { + "Name": "label", + "Value": "default-avatar.png" + } + ] + }, + { + "Route": "default-avatar.png", + "AssetFile": "default-avatar.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "103215" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4GyeqUhEaQhao84C6v8uJ83gVd+RGtxYDOvyRqk3dKU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4GyeqUhEaQhao84C6v8uJ83gVd+RGtxYDOvyRqk3dKU=" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313381385" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3190" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=" + } + ] + }, + { + "Route": "favicon.ico", + "AssetFile": "favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=" + } + ] + }, + { + "Route": "favicon.ico.gz", + "AssetFile": "favicon.ico.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3190" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=" + } + ] + }, + { + "Route": "favicon.r4qqgvv0sw.ico", + "AssetFile": "favicon.ico.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000313381385" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3190" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4qqgvv0sw" + }, + { + "Name": "integrity", + "Value": "sha256-NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.r4qqgvv0sw.ico", + "AssetFile": "favicon.ico", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "15406" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4qqgvv0sw" + }, + { + "Name": "integrity", + "Value": "sha256-NR2aO9zqEKeG1hmKcIVpC3sUOcvHlVSiQ7X2ToIHbIY=" + }, + { + "Name": "label", + "Value": "favicon.ico" + } + ] + }, + { + "Route": "favicon.r4qqgvv0sw.ico.gz", + "AssetFile": "favicon.ico.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3190" + }, + { + "Name": "Content-Type", + "Value": "image/x-icon" + }, + { + "Name": "ETag", + "Value": "\"qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "r4qqgvv0sw" + }, + { + "Name": "integrity", + "Value": "sha256-qpplaDRQ/ulWld+Hf/wp97feUtMtg4MCQUaPF+nlyEo=" + }, + { + "Name": "label", + "Value": "favicon.ico.gz" + } + ] + }, + { + "Route": "lib/axios/axios.min.ic71c9pf41.js", + "AssetFile": "lib/axios/axios.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053098285" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ic71c9pf41" + }, + { + "Name": "integrity", + "Value": "sha256-cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=" + }, + { + "Name": "label", + "Value": "lib/axios/axios.min.js" + } + ] + }, + { + "Route": "lib/axios/axios.min.ic71c9pf41.js", + "AssetFile": "lib/axios/axios.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "54149" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ic71c9pf41" + }, + { + "Name": "integrity", + "Value": "sha256-cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=" + }, + { + "Name": "label", + "Value": "lib/axios/axios.min.js" + } + ] + }, + { + "Route": "lib/axios/axios.min.ic71c9pf41.js.gz", + "AssetFile": "lib/axios/axios.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ic71c9pf41" + }, + { + "Name": "integrity", + "Value": "sha256-sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=" + }, + { + "Name": "label", + "Value": "lib/axios/axios.min.js.gz" + } + ] + }, + { + "Route": "lib/axios/axios.min.js", + "AssetFile": "lib/axios/axios.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000053098285" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=" + } + ] + }, + { + "Route": "lib/axios/axios.min.js", + "AssetFile": "lib/axios/axios.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "54149" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cnuKr9bvHjAjD2MAUW4sG7EJv5KIrkVKUmRVImgMVuI=" + } + ] + }, + { + "Route": "lib/axios/axios.min.js.gz", + "AssetFile": "lib/axios/axios.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18832" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sM6PRIVacXAFV0pQSm8Tsgaf1pxS4d3esdWil221hmg=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE", + "AssetFile": "lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1153" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=" + } + ] + }, + { + "Route": "lib/bootstrap/LICENSE.81b7ukuj9c", + "AssetFile": "lib/bootstrap/LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1153" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "81b7ukuj9c" + }, + { + "Name": "integrity", + "Value": "sha256-ZH6pA6BSx6fuHZvdaKph1DwUJ+VSYilIiEQu8ilnvqk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/LICENSE" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000144175317" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6935" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "75534" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6935" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031371565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "196535" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.st1cbwfwo5.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031371565" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "st1cbwfwo5" + }, + { + "Name": "integrity", + "Value": "sha256-QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.st1cbwfwo5.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "196535" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "st1cbwfwo5" + }, + { + "Name": "integrity", + "Value": "sha256-QO8cMbVkLiktUX1cHeXSUSe5nXMXUgyL9cjwnMyxPqc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.css.st1cbwfwo5.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "st1cbwfwo5" + }, + { + "Name": "integrity", + "Value": "sha256-6rnEnx62weEqHEaAWNCxqHcEJ5Nse8OfDH1VgsVBRPk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.5p029spbuu.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165152766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5p029spbuu" + }, + { + "Name": "integrity", + "Value": "sha256-96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.5p029spbuu.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "51325" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5p029spbuu" + }, + { + "Name": "integrity", + "Value": "sha256-96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.5p029spbuu.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5p029spbuu" + }, + { + "Name": "integrity", + "Value": "sha256-0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165152766" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "51325" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-96ayIUEnpKr7n5BIsFK5vJ3qXMXFgvRl9/CBcHs6/Ts=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.5vj65cig9w.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071189578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14046" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5vj65cig9w" + }, + { + "Name": "integrity", + "Value": "sha256-72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.5vj65cig9w.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "117439" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5vj65cig9w" + }, + { + "Name": "integrity", + "Value": "sha256-72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.5vj65cig9w.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14046" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5vj65cig9w" + }, + { + "Name": "integrity", + "Value": "sha256-pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0rA6iEYl7nHR6Av7jv4zeMNdEvPxk3tG8v/j7WObpPQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071189578" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14046" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "117439" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-72C/qDCGu+OwWeVA03bf9Ke0T8oIozCub0lfJkhzhvE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14046" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pGLRocp/sBqVwY0c4x1IP5ADJqJcMU75FRGOAOYpknE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.nakmwdwsxp.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000144175317" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6935" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nakmwdwsxp" + }, + { + "Name": "integrity", + "Value": "sha256-P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.nakmwdwsxp.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "75534" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nakmwdwsxp" + }, + { + "Name": "integrity", + "Value": "sha256-P4Ski6RrsG4nxKfPqaVoyRMoesl9UzArmfT+4fLqKHY=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.nakmwdwsxp.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6935" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nakmwdwsxp" + }, + { + "Name": "integrity", + "Value": "sha256-3IjFzSrMn39ObxUSh5eD54cRExkxLGpxuwEeOBfVkJk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000144133756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6937" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "75607" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.2q4vfeazbq.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031409995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31836" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2q4vfeazbq" + }, + { + "Name": "integrity", + "Value": "sha256-qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.2q4vfeazbq.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "196539" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2q4vfeazbq" + }, + { + "Name": "integrity", + "Value": "sha256-qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.2q4vfeazbq.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31836" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2q4vfeazbq" + }, + { + "Name": "integrity", + "Value": "sha256-c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6937" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031409995" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31836" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "196539" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qvA39OMlEs53jaewqVFmE8DQQrio47bZtlTs+Wu6U8g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "31836" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c1QxnzbumM4rQ8w6oRa9L7B1HLrPmF9j8Jt90piTbk4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6q6xbwqzk.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000144133756" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6937" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6q6xbwqzk" + }, + { + "Name": "integrity", + "Value": "sha256-+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6q6xbwqzk.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "75607" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6q6xbwqzk" + }, + { + "Name": "integrity", + "Value": "sha256-+ugQREUkP4Wnp1VX2L2lvw0Q2mgKYvYAZr1c2or+ysM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.e6q6xbwqzk.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6937" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "e6q6xbwqzk" + }, + { + "Name": "integrity", + "Value": "sha256-rRsUEh6LPf5pqjkwEMYyS4UGQglOmkF6/dwnYbwaL4c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165125495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "51400" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071037863" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14076" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "117516" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14076" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.o371a8zbv2.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000071037863" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14076" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o371a8zbv2" + }, + { + "Name": "integrity", + "Value": "sha256-NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.o371a8zbv2.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "117516" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o371a8zbv2" + }, + { + "Name": "integrity", + "Value": "sha256-NDSZjIiMPRIoO7/w7+jHef8retP4riQa8PMj4BVRGok=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.o371a8zbv2.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14076" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "o371a8zbv2" + }, + { + "Name": "integrity", + "Value": "sha256-Q9t6+W8HU/nTh00CAlgqd9cCR8BBfjrGTH1rR7cnye0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.dy6jgresuo.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000165125495" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dy6jgresuo" + }, + { + "Name": "integrity", + "Value": "sha256-9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.dy6jgresuo.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "51400" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dy6jgresuo" + }, + { + "Name": "integrity", + "Value": "sha256-9eX2dpELXvYs+6il2MHwf5OOPVOZjxVK1b1GWgL0B0k=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.dy6jgresuo.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "6055" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dy6jgresuo" + }, + { + "Name": "integrity", + "Value": "sha256-aUK2PukB288lkoH608lh9Wb7Jp/nzQq7H+hzObgj0JY=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.9r627ylsql.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069925180" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14300" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9r627ylsql" + }, + { + "Name": "integrity", + "Value": "sha256-S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-icons.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.9r627ylsql.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "100333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9r627ylsql" + }, + { + "Name": "integrity", + "Value": "sha256-S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-icons.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.9r627ylsql.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14300" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "9r627ylsql" + }, + { + "Name": "integrity", + "Value": "sha256-KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-icons.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069925180" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14300" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "100333" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-S/JHzoCZGcKPnxz/Bo+ly5uwSEYz9txDLCuOmMHnjbw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-icons.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-icons.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14300" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KEFrShMxho9j3lkIsfyAHrPVTQC0mEF6RvDAzYlIBV8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498753117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.jeal3x0ldm.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045556011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21950" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jeal3x0ldm" + }, + { + "Name": "integrity", + "Value": "sha256-FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.jeal3x0ldm.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "105138" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jeal3x0ldm" + }, + { + "Name": "integrity", + "Value": "sha256-FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.jeal3x0ldm.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21950" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jeal3x0ldm" + }, + { + "Name": "integrity", + "Value": "sha256-e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045556011" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21950" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "105138" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FZG0KxbNqITUi4QY7QvPFRS/TccntMfFWfSTdHN/pws=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21950" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-e5kZttHr/Zp8c0aOv0Srn8p5d5one9AFFg1uWMGLolU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000553709856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1805" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4653" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1805" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104953820" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9527" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "35330" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9527" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.okkk44j0xs.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000104953820" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9527" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okkk44j0xs" + }, + { + "Name": "integrity", + "Value": "sha256-2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.okkk44j0xs.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "35330" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okkk44j0xs" + }, + { + "Name": "integrity", + "Value": "sha256-2BbRsE/+czX1ufmDPGpnEieC9u6I3m5BKNDSX1ob3lg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.okkk44j0xs.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9527" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "okkk44j0xs" + }, + { + "Name": "integrity", + "Value": "sha256-BK8pMH2IxgE98oseeA1nait0G20nZOIMwwV4hSv2cbA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.z7kmom2977.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000553709856" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1805" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kmom2977" + }, + { + "Name": "integrity", + "Value": "sha256-359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.z7kmom2977.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4653" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kmom2977" + }, + { + "Name": "integrity", + "Value": "sha256-359CMPAICGkV+zve4A4HJMha3bwqTFTjl+QC1KJK5DQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.min.z7kmom2977.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1805" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z7kmom2977" + }, + { + "Name": "integrity", + "Value": "sha256-O/1329Bk9c8unzKhfpfKK44SHjUnvop9GNXT5RpMZqU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.mk8rdyw69w.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000498753117" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mk8rdyw69w" + }, + { + "Name": "integrity", + "Value": "sha256-Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.mk8rdyw69w.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6276" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mk8rdyw69w" + }, + { + "Name": "integrity", + "Value": "sha256-Jtl65EICD4ds6dQZbx1ongvMXj8D127HCg5XRBXXYGw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.mk8rdyw69w.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mk8rdyw69w" + }, + { + "Name": "integrity", + "Value": "sha256-ZCfWs3QbBDt2IoPs2WUxjQcUyZYhN0X0XwMeRjBbqQs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.97yrjpyf9r.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000503271263" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97yrjpyf9r" + }, + { + "Name": "integrity", + "Value": "sha256-G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.97yrjpyf9r.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6250" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97yrjpyf9r" + }, + { + "Name": "integrity", + "Value": "sha256-G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.97yrjpyf9r.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97yrjpyf9r" + }, + { + "Name": "integrity", + "Value": "sha256-y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000503271263" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6250" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-G0PQCDL7ETO6rITRlBIHDKvvSuJFn5p6h+WmbPX5xr4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.cwzlr5n8x4.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045535267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cwzlr5n8x4" + }, + { + "Name": "integrity", + "Value": "sha256-/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.cwzlr5n8x4.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "105151" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cwzlr5n8x4" + }, + { + "Name": "integrity", + "Value": "sha256-/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.cwzlr5n8x4.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cwzlr5n8x4" + }, + { + "Name": "integrity", + "Value": "sha256-qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1986" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y5XQxjx4HVsWgxmN9xWA2TxETCatVJ7aUSs+TId3flI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000045535267" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "105151" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/EdWHN6t5XYPplC88vixGfrBvfEii19kAssb+0YBVU8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "21960" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qi5v+Qgv3Rd48BAE0itGX17yZncNsh9Tj8ygcRm/AUY=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000545553737" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000103114044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9697" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "41570" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9697" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wmug9u23qg.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000103114044" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9697" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wmug9u23qg" + }, + { + "Name": "integrity", + "Value": "sha256-GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wmug9u23qg.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "41570" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wmug9u23qg" + }, + { + "Name": "integrity", + "Value": "sha256-GMDk5pA5dFkOimkBAWeEjYZ+7lgHPS0jYln6p/WJVYs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.wmug9u23qg.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "9697" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wmug9u23qg" + }, + { + "Name": "integrity", + "Value": "sha256-bCNL/bNDbg1Ufn4/BHNh/dMP9lmWhE0EFu7SmhiJjmg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.y53cy5s2zj.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000545553737" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y53cy5s2zj" + }, + { + "Name": "integrity", + "Value": "sha256-BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.y53cy5s2zj.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4725" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y53cy5s2zj" + }, + { + "Name": "integrity", + "Value": "sha256-BnHmEJpgor1n0UuwNdXG2VhHdV1r9MibuqBVHsgp9a8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.y53cy5s2zj.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1832" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y53cy5s2zj" + }, + { + "Name": "integrity", + "Value": "sha256-WTp7lZpq+GjAmcbXUE19YK35x8KWlLows+r8EfXLdjg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000124146493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "76449" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.j75batdsum.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031147796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32104" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j75batdsum" + }, + { + "Name": "integrity", + "Value": "sha256-4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.j75batdsum.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "192271" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j75batdsum" + }, + { + "Name": "integrity", + "Value": "sha256-4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.j75batdsum.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32104" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j75batdsum" + }, + { + "Name": "integrity", + "Value": "sha256-FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031147796" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32104" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "192271" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4WIqPof/vrXYO/jeJ4fDOQKUYWIwe64V3d+9/qNju20=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32104" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FGthxn5Pg25wOy8wj+jEjYevNC9nU2yGJMSYXwUuGXQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.2yn17lgxub.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140213124" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7131" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2yn17lgxub" + }, + { + "Name": "integrity", + "Value": "sha256-ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.2yn17lgxub.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53485" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2yn17lgxub" + }, + { + "Name": "integrity", + "Value": "sha256-ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.2yn17lgxub.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7131" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2yn17lgxub" + }, + { + "Name": "integrity", + "Value": "sha256-9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140213124" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7131" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53485" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ekoF4YNq4OUU4BoZ6FG2LTKD68LJvW49arNgykHOZfM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7131" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9v26z4CYqi0fOTMf6kVoS7tWrtku1BMXAR0zSP7+l3o=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069594265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14368" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "111875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14368" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.vy0bq9ydhf.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069594265" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14368" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy0bq9ydhf" + }, + { + "Name": "integrity", + "Value": "sha256-p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.vy0bq9ydhf.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "111875" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy0bq9ydhf" + }, + { + "Name": "integrity", + "Value": "sha256-p1dop4slefZhL4zG2pa6+2HUrOY1UUArGJXmet8Md9c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.vy0bq9ydhf.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14368" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vy0bq9ydhf" + }, + { + "Name": "integrity", + "Value": "sha256-VzDpdMptlozF2RctV1BqFBd7H5ytGofqzIDsFAIlDjQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000124921924" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "76307" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.ab1c3rmv7g.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031190543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32060" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab1c3rmv7g" + }, + { + "Name": "integrity", + "Value": "sha256-puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.ab1c3rmv7g.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "192214" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab1c3rmv7g" + }, + { + "Name": "integrity", + "Value": "sha256-puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.ab1c3rmv7g.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32060" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ab1c3rmv7g" + }, + { + "Name": "integrity", + "Value": "sha256-0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000031190543" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32060" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "192214" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-puDgKwvlFAord9R8G8of9P2CVYIJUFSoIbjDLEsKEH0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "32060" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0uUwtDd7NWwK9mFkT/yhki52fBZW5Ebp7pzdjSJSUZ4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140706346" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7106" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "53413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.56d2bn4wt9.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069715561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14343" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "56d2bn4wt9" + }, + { + "Name": "integrity", + "Value": "sha256-02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.56d2bn4wt9.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "111710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "56d2bn4wt9" + }, + { + "Name": "integrity", + "Value": "sha256-02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.56d2bn4wt9.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14343" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "56d2bn4wt9" + }, + { + "Name": "integrity", + "Value": "sha256-enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7106" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000069715561" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14343" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "111710" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-02ka4ymoE5yEecLUncLG3/SouTQMnTJOktX+96Pt/88=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "14343" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-enlGAal8WI19VaowGscdztNGTpTF+xMAdgbC+yT/2rI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.ik6i2hrs65.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000140706346" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7106" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ik6i2hrs65" + }, + { + "Name": "integrity", + "Value": "sha256-wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.ik6i2hrs65.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "53413" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ik6i2hrs65" + }, + { + "Name": "integrity", + "Value": "sha256-wseUsl7uipUzPYc/DBMMTMFA7hBTcxpw29RKOxLzXSc=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.ik6i2hrs65.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "7106" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ik6i2hrs65" + }, + { + "Name": "integrity", + "Value": "sha256-ELNi9wxEJ+sxYhfZ18yMaeLBnj2e/dYSKKmuXb7hUlI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.ophe14yye5.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000124921924" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ophe14yye5" + }, + { + "Name": "integrity", + "Value": "sha256-1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.ophe14yye5.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76307" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ophe14yye5" + }, + { + "Name": "integrity", + "Value": "sha256-1N1aPW6sTYexHfJCcDS4iElpPdWahP2Fr+Um56w0PjI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.ophe14yye5.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8004" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ophe14yye5" + }, + { + "Name": "integrity", + "Value": "sha256-ibTTwrPIUVIj1gNxECjrixNkeRDh+YFbCGDDhAiiBHw=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.z9shlbduue.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000124146493" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9shlbduue" + }, + { + "Name": "integrity", + "Value": "sha256-mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.z9shlbduue.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76449" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9shlbduue" + }, + { + "Name": "integrity", + "Value": "sha256-mcVOHRq7FsWaycSfboGsTpzuQZ3cIOR/GDHYxL6q2Yg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap-utilities.z9shlbduue.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "8054" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "z9shlbduue" + }, + { + "Name": "integrity", + "Value": "sha256-tCk+7VC+cqSDa0pupilXqG3i0sIFuqxFzFCvhhmrg8M=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap-utilities.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037524860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "215356" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.73kdqttayv.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010168802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98339" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73kdqttayv" + }, + { + "Name": "integrity", + "Value": "sha256-DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.73kdqttayv.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "536547" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73kdqttayv" + }, + { + "Name": "integrity", + "Value": "sha256-DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.73kdqttayv.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98339" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "73kdqttayv" + }, + { + "Name": "integrity", + "Value": "sha256-BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010168802" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98339" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=\"" + }, + { + "Name": "ETag", + "Value": "W/\"DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "536547" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-DRvWr0gangj5/5Q3DRn6ttzpcWDzl3OpHoAwAzNDR5Q=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98339" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BX2BycA+86wRIybp0oJe36qzEtHx26lB51Bmp/ZOE70=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.6gzpyzhau4.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041844506" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23897" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gzpyzhau4" + }, + { + "Name": "integrity", + "Value": "sha256-SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.6gzpyzhau4.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "162726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gzpyzhau4" + }, + { + "Name": "integrity", + "Value": "sha256-SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.6gzpyzhau4.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23897" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6gzpyzhau4" + }, + { + "Name": "integrity", + "Value": "sha256-LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041844506" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23897" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "162726" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SiIVMGgRhdXjKSTIddX7mh9IbOXVcwQWc7/p4nS6D/0=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8inm30yfxf.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013350065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "74905" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8inm30yfxf.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.8inm30yfxf.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "74905" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "integrity", + "Value": "sha256-Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23897" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LTxu1aeZz5yJTTAB+DiLnn5XOMdK1oiypNP/4JaeK9c=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000013350065" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "74905" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "74905" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Kym5HpgDYV8Caci50HDUPG6WCQ6nTP+8hy429w+zHVU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.ozu22stjof.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037524860" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ozu22stjof" + }, + { + "Name": "integrity", + "Value": "sha256-ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.ozu22stjof.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "215356" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ozu22stjof" + }, + { + "Name": "integrity", + "Value": "sha256-ZMvmWDSU4zY1Z29EQGm5Mubfz/YxF4hiReGqx84o4tA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.ozu22stjof.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26648" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ozu22stjof" + }, + { + "Name": "integrity", + "Value": "sha256-0PQFWzOES88NuUssKd3bRHFX98e+WxLz2mBMPbLYYAU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037757221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "214999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.4gxs3k148c.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010173043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98298" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gxs3k148c" + }, + { + "Name": "integrity", + "Value": "sha256-VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.4gxs3k148c.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "536461" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gxs3k148c" + }, + { + "Name": "integrity", + "Value": "sha256-VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.4gxs3k148c.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98298" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4gxs3k148c" + }, + { + "Name": "integrity", + "Value": "sha256-fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010173043" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98298" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=\"" + }, + { + "Name": "ETag", + "Value": "W/\"VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "536461" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VFvmi/ZSwQFmjS6Pry9B8zXeZ/GA168TXLyykDhNMZE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "98298" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fROWZSAc8i4k96FIpzlUC1Ca3zQTtcNEGJ2QDF0c6ek=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.gjcw7pocpk.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000037757221" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjcw7pocpk" + }, + { + "Name": "integrity", + "Value": "sha256-hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.gjcw7pocpk.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "214999" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjcw7pocpk" + }, + { + "Name": "integrity", + "Value": "sha256-hA1uBYAPgKq7OVoXF7sqU9NtylyP0K7AJn0a4zQcTbg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.gjcw7pocpk.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "26484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gjcw7pocpk" + }, + { + "Name": "integrity", + "Value": "sha256-y4yvkhxYiPmdSA51mebIovEV2Ava5K+CG0m2m3Dn3uE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.6l4ir0ityv.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041783312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6l4ir0ityv" + }, + { + "Name": "integrity", + "Value": "sha256-ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.6l4ir0ityv.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "162831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6l4ir0ityv" + }, + { + "Name": "integrity", + "Value": "sha256-ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.6l4ir0ityv.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6l4ir0ityv" + }, + { + "Name": "integrity", + "Value": "sha256-JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000041783312" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "162831" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ukKL5IDSyNoXFyp0wkgXeBpBITyM7JsCE6Dp96H1vI8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.fctod5rc9n.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009870499" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "101311" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fctod5rc9n" + }, + { + "Name": "integrity", + "Value": "sha256-j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.fctod5rc9n.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "661035" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fctod5rc9n" + }, + { + "Name": "integrity", + "Value": "sha256-j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.fctod5rc9n.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "101311" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "fctod5rc9n" + }, + { + "Name": "integrity", + "Value": "sha256-1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23932" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JqALeOVtkuSgJ/wzpK4VkQ6vRwMdNmjlkHB/OHOvNXM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000009870499" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "101311" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=\"" + }, + { + "Name": "ETag", + "Value": "W/\"j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "661035" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-j7uqK5VoTT4rUHMr911QEU5Sa94lR3uh9E28XBMlzrM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "AssetFile": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "101311" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1Y+EJtMTQgZHMNcENEjJ80wd/vAKX7wV6uZS+eAnbHY=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/fonts/bootstrap-icons.6n9uptdtd5.woff2", + "AssetFile": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "130764" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"rhZzQvitWq2DTndN3JlSi3KskXGmhPI+152D6hdsoE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6n9uptdtd5" + }, + { + "Name": "integrity", + "Value": "sha256-rhZzQvitWq2DTndN3JlSi3KskXGmhPI+152D6hdsoE4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff2" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/fonts/bootstrap-icons.oao1kbe1pj.woff", + "AssetFile": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "176196" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"QPFMAc7/Sc5Ff/HlT99Rs5SY+EWoV0HLCARxcqxVa7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "oao1kbe1pj" + }, + { + "Name": "integrity", + "Value": "sha256-QPFMAc7/Sc5Ff/HlT99Rs5SY+EWoV0HLCARxcqxVa7k=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff", + "AssetFile": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "176196" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"QPFMAc7/Sc5Ff/HlT99Rs5SY+EWoV0HLCARxcqxVa7k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QPFMAc7/Sc5Ff/HlT99Rs5SY+EWoV0HLCARxcqxVa7k=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff2", + "AssetFile": "lib/bootstrap/dist/css/fonts/bootstrap-icons.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "130764" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"rhZzQvitWq2DTndN3JlSi3KskXGmhPI+152D6hdsoE4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rhZzQvitWq2DTndN3JlSi3KskXGmhPI+152D6hdsoE4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.bakzt2zuye.svg", + "AssetFile": "lib/bootstrap/dist/fonts.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003636363636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bakzt2zuye" + }, + { + "Name": "integrity", + "Value": "sha256-jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/fonts.svg" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.bakzt2zuye.svg", + "AssetFile": "lib/bootstrap/dist/fonts.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bakzt2zuye" + }, + { + "Name": "integrity", + "Value": "sha256-jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/fonts.svg" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.bakzt2zuye.svg.gz", + "AssetFile": "lib/bootstrap/dist/fonts.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bakzt2zuye" + }, + { + "Name": "integrity", + "Value": "sha256-nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/fonts.svg.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.svg", + "AssetFile": "lib/bootstrap/dist/fonts.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003636363636" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.svg", + "AssetFile": "lib/bootstrap/dist/fonts.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "359" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jXnVnoaOnfTJHdLrlixVAS9NyTFkf10vnYovUEPmeoU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/fonts.svg.gz", + "AssetFile": "lib/bootstrap/dist/fonts.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "274" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nBCe9qSHYMJMP6H1iaMXXsJ+dGbXdbfY8vDOQ36QJfk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.1piudyfv7h.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034680076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1piudyfv7h" + }, + { + "Name": "integrity", + "Value": "sha256-JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.1piudyfv7h.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "153194" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1piudyfv7h" + }, + { + "Name": "integrity", + "Value": "sha256-JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.1piudyfv7h.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "1piudyfv7h" + }, + { + "Name": "integrity", + "Value": "sha256-KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.f6zq8v6eb3.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023011253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6zq8v6eb3" + }, + { + "Name": "integrity", + "Value": "sha256-l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.f6zq8v6eb3.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "215272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6zq8v6eb3" + }, + { + "Name": "integrity", + "Value": "sha256-l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.f6zq8v6eb3.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "f6zq8v6eb3" + }, + { + "Name": "integrity", + "Value": "sha256-IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000023011253" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "215272" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-l/hyCcHXdGwW6cO0xfobuAMZk3Nh8dsRdWwdaeSn9qo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "43456" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IhOXtzAW//rkc02YFG2iJsxLG98VJMV2YPL5kfri+rg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.kbynt5jhd9.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010393822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "96210" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kbynt5jhd9" + }, + { + "Name": "integrity", + "Value": "sha256-gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.kbynt5jhd9.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "425643" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kbynt5jhd9" + }, + { + "Name": "integrity", + "Value": "sha256-gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.kbynt5jhd9.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "96210" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "kbynt5jhd9" + }, + { + "Name": "integrity", + "Value": "sha256-1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000010393822" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "96210" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "425643" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gO4uhxfGuK0ONjRlHuwfghGfEXT5azm1oHWnTEFGTfk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "96210" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1kJay7xwbbksOBfUjRgDnJ7JmGY8uoGQauZeGyiZpFE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.89qbw8ngem.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044462229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89qbw8ngem" + }, + { + "Name": "integrity", + "Value": "sha256-rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.89qbw8ngem.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89qbw8ngem" + }, + { + "Name": "integrity", + "Value": "sha256-rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.89qbw8ngem.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "89qbw8ngem" + }, + { + "Name": "integrity", + "Value": "sha256-wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000044462229" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "78474" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rAnWnVnzChxAAi8NS+Ilr1mE7Sj+do+X/DqyilNsznM=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.c2nslu3uf3.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011841326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84449" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2nslu3uf3" + }, + { + "Name": "integrity", + "Value": "sha256-xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.c2nslu3uf3.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "327261" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2nslu3uf3" + }, + { + "Name": "integrity", + "Value": "sha256-xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.c2nslu3uf3.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84449" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "c2nslu3uf3" + }, + { + "Name": "integrity", + "Value": "sha256-/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "22490" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wM+4afvXviOYY1u3lqAtJPdw+udFgdkvY31X48McJVs=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000011841326" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84449" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "327261" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xIBBxDPvWhk8/JdaFEZoejadfaKFUfZFwRS1D4Jkuro=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "84449" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/zNKZjiKnlXlkeEYsvG/bAwTLMhBlR9k2kpl01QYWzE=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035583390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28102" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "143996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.2lgwfvgpvi.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014837676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67395" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2lgwfvgpvi" + }, + { + "Name": "integrity", + "Value": "sha256-CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.2lgwfvgpvi.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "288320" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2lgwfvgpvi" + }, + { + "Name": "integrity", + "Value": "sha256-CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.2lgwfvgpvi.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67395" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2lgwfvgpvi" + }, + { + "Name": "integrity", + "Value": "sha256-wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28102" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014837676" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67395" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "288320" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CllC/sbLvyLE9cQljmFRlITfqdZRnBv2ysX5LJtl/dg=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67395" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wDTwvHB1twePfY8BwO/mSo3ZTF7qg7v7hcptOdMsOG4=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.jqwzsa9uv6.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000054338966" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqwzsa9uv6" + }, + { + "Name": "integrity", + "Value": "sha256-hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.jqwzsa9uv6.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "72022" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqwzsa9uv6" + }, + { + "Name": "integrity", + "Value": "sha256-hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.jqwzsa9uv6.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jqwzsa9uv6" + }, + { + "Name": "integrity", + "Value": "sha256-C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000054338966" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "72022" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hVv0IJy8sIv1uIlVQOHnZFNAGprmLfDV+x0anYPmxYU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "18402" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-C6zyH4f+2UQBVZLKvhGsaG4d61JgOPlmYBcjsYuYiYI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018150138" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "222508" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.wsezl0heh6.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018150138" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsezl0heh6" + }, + { + "Name": "integrity", + "Value": "sha256-sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.wsezl0heh6.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "222508" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsezl0heh6" + }, + { + "Name": "integrity", + "Value": "sha256-sPqzWcSS9aRa2gpWTVNQzemajn8hrFjgXPj3j9QItQo=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.min.js.wsezl0heh6.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "55095" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wsezl0heh6" + }, + { + "Name": "integrity", + "Value": "sha256-lhnZfKOqSwwthU3gqyWsxalMKVrbvSPoopm8IcbItJI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.n5w6o92d9r.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000035583390" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28102" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5w6o92d9r" + }, + { + "Name": "integrity", + "Value": "sha256-SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.n5w6o92d9r.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "143996" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5w6o92d9r" + }, + { + "Name": "integrity", + "Value": "sha256-SySIctW5IQsq8JoYGrNJU4ZilHaieJru5P0+8vTcfDA=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.esm.n5w6o92d9r.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.esm.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28102" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "n5w6o92d9r" + }, + { + "Name": "integrity", + "Value": "sha256-HUrNVQmg2CCakVNIRFaworsdrKiq37qE26tMysqP4s8=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.esm.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000034680076" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "153194" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JV8zLOxqX3ENLwiQX8lCiDY3TvQzbeibDAsdYtalZ4w=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.6ukhryfubh.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014769303" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67707" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ukhryfubh" + }, + { + "Name": "integrity", + "Value": "sha256-Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.6ukhryfubh.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "289522" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ukhryfubh" + }, + { + "Name": "integrity", + "Value": "sha256-Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.6ukhryfubh.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67707" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6ukhryfubh" + }, + { + "Name": "integrity", + "Value": "sha256-zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.js.map.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "28834" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KW2rUnfTHDcVmA/Yl3UbmKzMQEvjVhpo0+ONasSEP1g=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000014769303" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67707" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "289522" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Qkl5mZUZ64aYBaORRMP9jfD1kz8J6FwiV2M86JDJkdQ=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "67707" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zh4Hi0FcmWpafaydS8YmEBKjCnAjTx3qhx59dNM9sRk=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.4908xmbfjr.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062976258" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4908xmbfjr" + }, + { + "Name": "integrity", + "Value": "sha256-uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.4908xmbfjr.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "59517" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4908xmbfjr" + }, + { + "Name": "integrity", + "Value": "sha256-uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.4908xmbfjr.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4908xmbfjr" + }, + { + "Name": "integrity", + "Value": "sha256-xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.gz" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000062976258" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "59517" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uAMYHAQlaHq1buKLwrk7FF4qxvcLWntS2/DpdKucfmU=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "15878" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xkquSyEJiy2DTMZ0bX2/D3nKAiArbhLcCxKIzK05pfI=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018616427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53715" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "217145" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53715" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.u33ctipx7g.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000018616427" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53715" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=\"" + }, + { + "Name": "ETag", + "Value": "W/\"ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u33ctipx7g" + }, + { + "Name": "integrity", + "Value": "sha256-ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.u33ctipx7g.map", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "217145" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u33ctipx7g" + }, + { + "Name": "integrity", + "Value": "sha256-ui/FQI+y0IUsY8Pbi80b8s3GeEL+PsvdaLTONobpn88=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map" + } + ] + }, + { + "Route": "lib/bootstrap/dist/js/bootstrap.min.js.u33ctipx7g.map.gz", + "AssetFile": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "53715" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "u33ctipx7g" + }, + { + "Name": "integrity", + "Value": "sha256-9EgpLKMhtbKq9ATtB4kDXlk1R8ZJ1hG0suvBrvsbgls=" + }, + { + "Name": "label", + "Value": "lib/bootstrap/dist/js/bootstrap.min.js.map.gz" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.css", + "AssetFile": "lib/dropzone/dropzone.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.css", + "AssetFile": "lib/dropzone/dropzone.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.css.gz", + "AssetFile": "lib/dropzone/dropzone.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.g2vsoxxg9l.js", + "AssetFile": "lib/dropzone/dropzone.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027367269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2vsoxxg9l" + }, + { + "Name": "integrity", + "Value": "sha256-uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.js" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.g2vsoxxg9l.js", + "AssetFile": "lib/dropzone/dropzone.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "114702" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2vsoxxg9l" + }, + { + "Name": "integrity", + "Value": "sha256-uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.js" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.g2vsoxxg9l.js.gz", + "AssetFile": "lib/dropzone/dropzone.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "g2vsoxxg9l" + }, + { + "Name": "integrity", + "Value": "sha256-1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.js.gz" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.js", + "AssetFile": "lib/dropzone/dropzone.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000027367269" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.js", + "AssetFile": "lib/dropzone/dropzone.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "114702" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-uCdT6FLkY6+68Xzm4f9O0usHnJPdKv0Q0rsoXvLchP4=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.js.gz", + "AssetFile": "lib/dropzone/dropzone.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "36539" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1c01218F67QYuYmOnt0/HC2MORVWAi5zksn6Pgcu1n0=" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.rpo6apucdd.css", + "AssetFile": "lib/dropzone/dropzone.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000637755102" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "ETag", + "Value": "W/\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.css" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.rpo6apucdd.css", + "AssetFile": "lib/dropzone/dropzone.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9830" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-n/Cuyrm+v15Nim0mJ2ZrElHlCk8raJs/57WeCsIzDr4=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.css" + } + ] + }, + { + "Route": "lib/dropzone/dropzone.min.rpo6apucdd.css.gz", + "AssetFile": "lib/dropzone/dropzone.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "rpo6apucdd" + }, + { + "Name": "integrity", + "Value": "sha256-68LDxwPW8hrhU9yKJoi5ZEDaI4jJ1LS3ucqLhRyeYa4=" + }, + { + "Name": "label", + "Value": "lib/dropzone/dropzone.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.css", + "AssetFile": "lib/font-awesome/css/all.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074632435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13398" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.css", + "AssetFile": "lib/font-awesome/css/all.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "78193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.css.gz", + "AssetFile": "lib/font-awesome/css/all.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13398" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.gz3otmzdmh.css", + "AssetFile": "lib/font-awesome/css/all.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000074632435" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13398" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz3otmzdmh" + }, + { + "Name": "integrity", + "Value": "sha256-1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.gz3otmzdmh.css", + "AssetFile": "lib/font-awesome/css/all.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78193" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz3otmzdmh" + }, + { + "Name": "integrity", + "Value": "sha256-1BB7u9Dv4KPjJLI6yZYzVhS0giwx4piY74Fc/3gCTiM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.gz3otmzdmh.css.gz", + "AssetFile": "lib/font-awesome/css/all.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13398" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gz3otmzdmh" + }, + { + "Name": "integrity", + "Value": "sha256-brtw8xRqtly9rkcKAr1G1WA4prwVxvdYCgxFOsAtm+g=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.css", + "AssetFile": "lib/font-awesome/css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000077742362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12862" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.css", + "AssetFile": "lib/font-awesome/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "59309" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.css.gz", + "AssetFile": "lib/font-awesome/css/all.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12862" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.tqrty0tmzw.css", + "AssetFile": "lib/font-awesome/css/all.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000077742362" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12862" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqrty0tmzw" + }, + { + "Name": "integrity", + "Value": "sha256-teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.tqrty0tmzw.css", + "AssetFile": "lib/font-awesome/css/all.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "59309" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqrty0tmzw" + }, + { + "Name": "integrity", + "Value": "sha256-teON4y0UnyJj2Gol8NtuY0GOKW9cQvAE8a0Ve1Bi25Y=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/all.min.tqrty0tmzw.css.gz", + "AssetFile": "lib/font-awesome/css/all.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12862" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tqrty0tmzw" + }, + { + "Name": "integrity", + "Value": "sha256-U+cSczxCjWifbWzAAJ9g2GUwgUWl9ZrI9ita++rxxFE=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/all.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.css", + "AssetFile": "lib/font-awesome/css/brands.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003048780488" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.css", + "AssetFile": "lib/font-awesome/css/brands.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.css.gz", + "AssetFile": "lib/font-awesome/css/brands.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.lc9dol4lo6.css", + "AssetFile": "lib/font-awesome/css/brands.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003048780488" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc9dol4lo6" + }, + { + "Name": "integrity", + "Value": "sha256-a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.lc9dol4lo6.css", + "AssetFile": "lib/font-awesome/css/brands.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "747" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc9dol4lo6" + }, + { + "Name": "integrity", + "Value": "sha256-a4P4a4awKKGyHONA945dcH8P6tQ0DXAMK8BlA9OyLlQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.lc9dol4lo6.css.gz", + "AssetFile": "lib/font-awesome/css/brands.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "327" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "lc9dol4lo6" + }, + { + "Name": "integrity", + "Value": "sha256-k/NZvgrx1sC+W5mxvDsRtQjCLwUomor4FSLEm0oaVbg=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.2m5ro0ilug.css", + "AssetFile": "lib/font-awesome/css/brands.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m5ro0ilug" + }, + { + "Name": "integrity", + "Value": "sha256-Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.2m5ro0ilug.css", + "AssetFile": "lib/font-awesome/css/brands.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "679" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m5ro0ilug" + }, + { + "Name": "integrity", + "Value": "sha256-Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.2m5ro0ilug.css.gz", + "AssetFile": "lib/font-awesome/css/brands.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "2m5ro0ilug" + }, + { + "Name": "integrity", + "Value": "sha256-BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/brands.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.css", + "AssetFile": "lib/font-awesome/css/brands.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.css", + "AssetFile": "lib/font-awesome/css/brands.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "679" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Ks0yBAXJ3lY85Ev/K6sD1HkuDGWbtFSXFJPMX1Db3AA=" + } + ] + }, + { + "Route": "lib/font-awesome/css/brands.min.css.gz", + "AssetFile": "lib/font-awesome/css/brands.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BuJO1JDKd9DNb7kJ5Z0ESPtgJhtfmUWeaEs76YqM+Iw=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.6d51olv6j3.css", + "AssetFile": "lib/font-awesome/css/fontawesome.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076306753" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13104" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=\"" + }, + { + "Name": "ETag", + "Value": "W/\"as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6d51olv6j3" + }, + { + "Name": "integrity", + "Value": "sha256-as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.6d51olv6j3.css", + "AssetFile": "lib/font-awesome/css/fontawesome.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76524" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6d51olv6j3" + }, + { + "Name": "integrity", + "Value": "sha256-as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.6d51olv6j3.css.gz", + "AssetFile": "lib/font-awesome/css/fontawesome.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13104" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6d51olv6j3" + }, + { + "Name": "integrity", + "Value": "sha256-QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.css", + "AssetFile": "lib/font-awesome/css/fontawesome.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000076306753" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13104" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=\"" + }, + { + "Name": "ETag", + "Value": "W/\"as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.css", + "AssetFile": "lib/font-awesome/css/fontawesome.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "76524" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-as2+WuRdu1h8jU0TKbuLxIEXOFZUm0UiP3JXRVCuz1I=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.css.gz", + "AssetFile": "lib/font-awesome/css/fontawesome.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "13104" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-QJqG8AzUC+2tSPKiZx8t/T370FJE8XaswwFDzryYT88=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.4rcvuen4jw.css", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079516539" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rcvuen4jw" + }, + { + "Name": "integrity", + "Value": "sha256-sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.4rcvuen4jw.css", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "57877" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rcvuen4jw" + }, + { + "Name": "integrity", + "Value": "sha256-sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.4rcvuen4jw.css.gz", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4rcvuen4jw" + }, + { + "Name": "integrity", + "Value": "sha256-XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/fontawesome.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.css", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000079516539" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.css", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "57877" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sGedb+HrwEqePjI/MjKqCds9rW1nq187B4ADEJ9e4p8=" + } + ] + }, + { + "Route": "lib/font-awesome/css/fontawesome.min.css.gz", + "AssetFile": "lib/font-awesome/css/fontawesome.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "12575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-XOqU4Xa4QkVmVt8ZOpimTCar9ig5gb5ie0G4eV64JHM=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.css", + "AssetFile": "lib/font-awesome/css/regular.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.css", + "AssetFile": "lib/font-awesome/css/regular.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.css.gz", + "AssetFile": "lib/font-awesome/css/regular.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.css", + "AssetFile": "lib/font-awesome/css/regular.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.css", + "AssetFile": "lib/font-awesome/css/regular.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.css.gz", + "AssetFile": "lib/font-awesome/css/regular.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.upn7fjuiur.css", + "AssetFile": "lib/font-awesome/css/regular.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003205128205" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=\"" + }, + { + "Name": "ETag", + "Value": "W/\"LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn7fjuiur" + }, + { + "Name": "integrity", + "Value": "sha256-LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.upn7fjuiur.css", + "AssetFile": "lib/font-awesome/css/regular.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "681" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn7fjuiur" + }, + { + "Name": "integrity", + "Value": "sha256-LpFBFbImXdqgrjDwx+1X7kCvDFf/ak7cMxFDpPskuuQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.min.upn7fjuiur.css.gz", + "AssetFile": "lib/font-awesome/css/regular.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "311" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "upn7fjuiur" + }, + { + "Name": "integrity", + "Value": "sha256-i9Le7a8PwFbRsZpl/O26wVH9nTJ4BHRmryyXFLzfb3Q=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.mtdyy5m523.css", + "AssetFile": "lib/font-awesome/css/regular.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003030303030" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtdyy5m523" + }, + { + "Name": "integrity", + "Value": "sha256-hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.mtdyy5m523.css", + "AssetFile": "lib/font-awesome/css/regular.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "749" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtdyy5m523" + }, + { + "Name": "integrity", + "Value": "sha256-hk86w29RJLiREswWn4atcpn3R/9GFezWaf1e/KQWpXQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/regular.mtdyy5m523.css.gz", + "AssetFile": "lib/font-awesome/css/regular.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "329" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mtdyy5m523" + }, + { + "Name": "integrity", + "Value": "sha256-3vz+rjDkLluqtVesu47GTcIy6Dc/y3EYwWiDOo8VkgM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/regular.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.css", + "AssetFile": "lib/font-awesome/css/solid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003012048193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.css", + "AssetFile": "lib/font-awesome/css/solid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.css.gz", + "AssetFile": "lib/font-awesome/css/solid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.hfb4dth8na.css", + "AssetFile": "lib/font-awesome/css/solid.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003012048193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hfb4dth8na" + }, + { + "Name": "integrity", + "Value": "sha256-3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.hfb4dth8na.css", + "AssetFile": "lib/font-awesome/css/solid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "743" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hfb4dth8na" + }, + { + "Name": "integrity", + "Value": "sha256-3ePFwI0Qq6xvo9xtUP4WjtlGfXA36Ph4de7PrlK8qFA=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.hfb4dth8na.css.gz", + "AssetFile": "lib/font-awesome/css/solid.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "331" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hfb4dth8na" + }, + { + "Name": "integrity", + "Value": "sha256-0/G20TMLlib+OuHv/7kZWngYwFdbCVsYoOXtYB11Rk0=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.css", + "AssetFile": "lib/font-awesome/css/solid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003194888179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.css", + "AssetFile": "lib/font-awesome/css/solid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.css.gz", + "AssetFile": "lib/font-awesome/css/solid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.tju85rksnn.css", + "AssetFile": "lib/font-awesome/css/solid.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003194888179" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tju85rksnn" + }, + { + "Name": "integrity", + "Value": "sha256-qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.tju85rksnn.css", + "AssetFile": "lib/font-awesome/css/solid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "673" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tju85rksnn" + }, + { + "Name": "integrity", + "Value": "sha256-qf3kWdRnSMh3mU8ssfG+/rUYxEef0UGV39R17Ej+d/k=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/solid.min.tju85rksnn.css.gz", + "AssetFile": "lib/font-awesome/css/solid.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "312" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "tju85rksnn" + }, + { + "Name": "integrity", + "Value": "sha256-rJ0tODkGdX3DSxR73VQUCv0VRGjQSHAYhO3XyMlJHnw=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/solid.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599161174" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1668" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "8448" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.css.gz", + "AssetFile": "lib/font-awesome/css/svg-with-js.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1668" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.jfb1c0fodm.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000599161174" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1668" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=\"" + }, + { + "Name": "ETag", + "Value": "W/\"4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfb1c0fodm" + }, + { + "Name": "integrity", + "Value": "sha256-4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.jfb1c0fodm.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "8448" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfb1c0fodm" + }, + { + "Name": "integrity", + "Value": "sha256-4ZO+FQ6kr+7+ncXlb2LVKtKgp1g8adMoX79a0ukvGE0=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.jfb1c0fodm.css.gz", + "AssetFile": "lib/font-awesome/css/svg-with-js.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1668" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jfb1c0fodm" + }, + { + "Name": "integrity", + "Value": "sha256-lu4BwGhQ/omc3xiKjXO6JnEg5eJ5+KKkNrSR56SpAko=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645161290" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.css.gz", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.pz9hh5frqh.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000645161290" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=\"" + }, + { + "Name": "ETag", + "Value": "W/\"1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz9hh5frqh" + }, + { + "Name": "integrity", + "Value": "sha256-1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.pz9hh5frqh.css", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "6363" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz9hh5frqh" + }, + { + "Name": "integrity", + "Value": "sha256-1eEFaaDuFaQ6ftqvEkAlRigjEo/Q840hfkF2rbHBqhw=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/svg-with-js.min.pz9hh5frqh.css.gz", + "AssetFile": "lib/font-awesome/css/svg-with-js.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "1549" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "pz9hh5frqh" + }, + { + "Name": "integrity", + "Value": "sha256-cN44KbvX6SsLBZ52yeKvarltMnF7glW5rjp0IRitPhs=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/svg-with-js.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.css", + "AssetFile": "lib/font-awesome/css/v4-shims.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222766763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.css", + "AssetFile": "lib/font-awesome/css/v4-shims.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "43484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.css.gz", + "AssetFile": "lib/font-awesome/css/v4-shims.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.css", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236127509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.css", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "26706" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.css.gz", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.qwiihh62ph.css", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000236127509" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwiihh62ph" + }, + { + "Name": "integrity", + "Value": "sha256-xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.qwiihh62ph.css", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "26706" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwiihh62ph" + }, + { + "Name": "integrity", + "Value": "sha256-xlpmd93+kLWp/AcZTDJTlXazDvkWN+zCsGvBR+zvfZ0=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.min.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.min.qwiihh62ph.css.gz", + "AssetFile": "lib/font-awesome/css/v4-shims.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4234" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qwiihh62ph" + }, + { + "Name": "integrity", + "Value": "sha256-yf3PpsWzySKLs/l1kItmDdEArFcONNe1Gbsypr/VlIg=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.min.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.y7sbnt5r6l.css", + "AssetFile": "lib/font-awesome/css/v4-shims.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000222766763" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y7sbnt5r6l" + }, + { + "Name": "integrity", + "Value": "sha256-YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.y7sbnt5r6l.css", + "AssetFile": "lib/font-awesome/css/v4-shims.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "43484" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y7sbnt5r6l" + }, + { + "Name": "integrity", + "Value": "sha256-YoEv9vpPJOCC6KuA8LUlcI8ax5rx6z0YB//Etj/ckw8=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.css" + } + ] + }, + { + "Route": "lib/font-awesome/css/v4-shims.y7sbnt5r6l.css.gz", + "AssetFile": "lib/font-awesome/css/v4-shims.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "4488" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "y7sbnt5r6l" + }, + { + "Name": "integrity", + "Value": "sha256-I9WSNeMLxXxwOfMy2LuIueauypHt2vZYdaEAFmApUio=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/css/v4-shims.css.gz" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.6fdyj7j1sx.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "76736" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"jqh5F1SRWomKMQDmPjKXim0XY75t+Oc6OdOpDWkc3u8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "6fdyj7j1sx" + }, + { + "Name": "integrity", + "Value": "sha256-jqh5F1SRWomKMQDmPjKXim0XY75t+Oc6OdOpDWkc3u8=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.woff2" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.7t806y02pw.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003913297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7t806y02pw" + }, + { + "Name": "integrity", + "Value": "sha256-mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.7t806y02pw.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "751644" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7t806y02pw" + }, + { + "Name": "integrity", + "Value": "sha256-mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.7t806y02pw.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "7t806y02pw" + }, + { + "Name": "integrity", + "Value": "sha256-nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.svg.gz" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "134294" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"5CmUZOewEpaO7WOsLbHJUJ9WvKQJ759x8pJqjDyAsqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5CmUZOewEpaO7WOsLbHJUJ9WvKQJ759x8pJqjDyAsqk=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.j5wh9ughv7.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "89988" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"+SF/ZodLDAHNjBC2opXbxPYJrLb1rcQcN9pGZBtX6wI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "j5wh9ughv7" + }, + { + "Name": "integrity", + "Value": "sha256-+SF/ZodLDAHNjBC2opXbxPYJrLb1rcQcN9pGZBtX6wI=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.woff" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.otjz39eo9p.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "134294" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"5CmUZOewEpaO7WOsLbHJUJ9WvKQJ759x8pJqjDyAsqk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "otjz39eo9p" + }, + { + "Name": "integrity", + "Value": "sha256-5CmUZOewEpaO7WOsLbHJUJ9WvKQJ759x8pJqjDyAsqk=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.eot" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003913297" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=\"" + }, + { + "Name": "ETag", + "Value": "W/\"mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "751644" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mzqJZShKvk47cInunVJfo7A7na9szkAg7K43eisLr2w=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "255538" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-nxQOnJuMw8EaSjvKR9i+tXCacMVq2RUzjFQTGVCpFAQ=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.totad59w05.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "133988" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"zaWdbv/6aFgw/ZW1X2SunLUSec00skELafhMfsMBV9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "totad59w05" + }, + { + "Name": "integrity", + "Value": "sha256-zaWdbv/6aFgw/ZW1X2SunLUSec00skELafhMfsMBV9k=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-brands-400.ttf" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "133988" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"zaWdbv/6aFgw/ZW1X2SunLUSec00skELafhMfsMBV9k=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zaWdbv/6aFgw/ZW1X2SunLUSec00skELafhMfsMBV9k=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "89988" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"+SF/ZodLDAHNjBC2opXbxPYJrLb1rcQcN9pGZBtX6wI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+SF/ZodLDAHNjBC2opXbxPYJrLb1rcQcN9pGZBtX6wI=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-brands-400.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-brands-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "76736" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"jqh5F1SRWomKMQDmPjKXim0XY75t+Oc6OdOpDWkc3u8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jqh5F1SRWomKMQDmPjKXim0XY75t+Oc6OdOpDWkc3u8=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.40m2n68m7w.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "13224" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"5CqIRERIrD1gVJzHwf8sipyschA0wHPYChSkTnlzDMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "40m2n68m7w" + }, + { + "Name": "integrity", + "Value": "sha256-5CqIRERIrD1gVJzHwf8sipyschA0wHPYChSkTnlzDMo=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.woff2" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.dbm23ce279.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "34034" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"edCIBkvrOCYFT7iBZUFiNYl6hWypUvyhSYscWbFqqkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "dbm23ce279" + }, + { + "Name": "integrity", + "Value": "sha256-edCIBkvrOCYFT7iBZUFiNYl6hWypUvyhSYscWbFqqkg=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.eot" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "34034" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"edCIBkvrOCYFT7iBZUFiNYl6hWypUvyhSYscWbFqqkg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-edCIBkvrOCYFT7iBZUFiNYl6hWypUvyhSYscWbFqqkg=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.gaagixs38h.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "33736" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"6HEbu4ca/Y6d6mDhbTDwDH5IN7vJgHBlAXR1uEn6IxM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "gaagixs38h" + }, + { + "Name": "integrity", + "Value": "sha256-6HEbu4ca/Y6d6mDhbTDwDH5IN7vJgHBlAXR1uEn6IxM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.ttf" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.hp61lh7kro.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "16276" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"y56eaTGSQTzeKx8hwdwdRLb+eyfMK0WOizWdGPn/j04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hp61lh7kro" + }, + { + "Name": "integrity", + "Value": "sha256-y56eaTGSQTzeKx8hwdwdRLb+eyfMK0WOizWdGPn/j04=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.woff" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.mm3hm36b2x.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026622651" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37561" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mm3hm36b2x" + }, + { + "Name": "integrity", + "Value": "sha256-YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.mm3hm36b2x.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "145515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mm3hm36b2x" + }, + { + "Name": "integrity", + "Value": "sha256-YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.mm3hm36b2x.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37561" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mm3hm36b2x" + }, + { + "Name": "integrity", + "Value": "sha256-qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-regular-400.svg.gz" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000026622651" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37561" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "145515" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YvHyuRZjwwbH+9NccgNB63E9tR0jQdltlIJNwESxl94=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "37561" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qOZLZplhoijSS7/9YsvP1qSR1UJ1ZjpPYkNQqZNBwYg=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "33736" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"6HEbu4ca/Y6d6mDhbTDwDH5IN7vJgHBlAXR1uEn6IxM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-6HEbu4ca/Y6d6mDhbTDwDH5IN7vJgHBlAXR1uEn6IxM=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "16276" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"y56eaTGSQTzeKx8hwdwdRLb+eyfMK0WOizWdGPn/j04=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-y56eaTGSQTzeKx8hwdwdRLb+eyfMK0WOizWdGPn/j04=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-regular-400.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-regular-400.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "13224" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"5CqIRERIrD1gVJzHwf8sipyschA0wHPYChSkTnlzDMo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5CqIRERIrD1gVJzHwf8sipyschA0wHPYChSkTnlzDMo=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.3hh74dlnyy.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "203030" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"NzwE/SQY9cd+6knVFHMQWPGQepT/O05dfD5XZ+i1PYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3hh74dlnyy" + }, + { + "Name": "integrity", + "Value": "sha256-NzwE/SQY9cd+6knVFHMQWPGQepT/O05dfD5XZ+i1PYs=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.eot" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.76ds2gje4f.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "202744" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"r2OXUD/O+9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "76ds2gje4f" + }, + { + "Name": "integrity", + "Value": "sha256-r2OXUD/O+9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.ttf" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.97uxsgb79l.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003872997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97uxsgb79l" + }, + { + "Name": "integrity", + "Value": "sha256-JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.97uxsgb79l.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "924025" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97uxsgb79l" + }, + { + "Name": "integrity", + "Value": "sha256-JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.svg" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.97uxsgb79l.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "97uxsgb79l" + }, + { + "Name": "integrity", + "Value": "sha256-ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.svg.gz" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.eot", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "203030" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"NzwE/SQY9cd+6knVFHMQWPGQepT/O05dfD5XZ+i1PYs=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-NzwE/SQY9cd+6knVFHMQWPGQepT/O05dfD5XZ+i1PYs=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.jba8vm33uh.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "101648" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"P200iM9lN09vZ2wxU0CwrCvoMr1VJAyAlEjjbvm5YyY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "jba8vm33uh" + }, + { + "Name": "integrity", + "Value": "sha256-P200iM9lN09vZ2wxU0CwrCvoMr1VJAyAlEjjbvm5YyY=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.woff" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.k51ry5602j.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "78268" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"mDS4KtJuKjdYPSJnahLdLrD+fIA1aiEU0NsaqLOJlTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "k51ry5602j" + }, + { + "Name": "integrity", + "Value": "sha256-mDS4KtJuKjdYPSJnahLdLrD+fIA1aiEU0NsaqLOJlTc=" + }, + { + "Name": "label", + "Value": "lib/font-awesome/webfonts/fa-solid-900.woff2" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003872997" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.svg", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "924025" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JWMGRrH76YMr0+8rIV/OLVUzFfWfHHtW8BlrBYTVLF4=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.svg.gz", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.svg.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "258197" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ylmcm8pEy3nmwXk7Fpiew5PQcKUYvXT8tdK1YV/XbSM=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.ttf", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "202744" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"r2OXUD/O+9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-r2OXUD/O+9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.woff", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "101648" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"P200iM9lN09vZ2wxU0CwrCvoMr1VJAyAlEjjbvm5YyY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-P200iM9lN09vZ2wxU0CwrCvoMr1VJAyAlEjjbvm5YyY=" + } + ] + }, + { + "Route": "lib/font-awesome/webfonts/fa-solid-900.woff2", + "AssetFile": "lib/font-awesome/webfonts/fa-solid-900.woff2", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "78268" + }, + { + "Name": "Content-Type", + "Value": "font/woff2" + }, + { + "Name": "ETag", + "Value": "\"mDS4KtJuKjdYPSJnahLdLrD+fIA1aiEU0NsaqLOJlTc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mDS4KtJuKjdYPSJnahLdLrD+fIA1aiEU0NsaqLOJlTc=" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.bqo8tjd34n.js", + "AssetFile": "lib/indotalent/axios-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001153402537" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bqo8tjd34n" + }, + { + "Name": "integrity", + "Value": "sha256-MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=" + }, + { + "Name": "label", + "Value": "lib/indotalent/axios-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.bqo8tjd34n.js", + "AssetFile": "lib/indotalent/axios-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bqo8tjd34n" + }, + { + "Name": "integrity", + "Value": "sha256-MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=" + }, + { + "Name": "label", + "Value": "lib/indotalent/axios-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.bqo8tjd34n.js.gz", + "AssetFile": "lib/indotalent/axios-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bqo8tjd34n" + }, + { + "Name": "integrity", + "Value": "sha256-7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=" + }, + { + "Name": "label", + "Value": "lib/indotalent/axios-manager.js.gz" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.js", + "AssetFile": "lib/indotalent/axios-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001153402537" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.js", + "AssetFile": "lib/indotalent/axios-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3206" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-MyjmBabyymocsimbZ+h3E+6wTvdDQJeEvjQfePwxZwY=" + } + ] + }, + { + "Route": "lib/indotalent/axios-manager.js.gz", + "AssetFile": "lib/indotalent/axios-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "866" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7E4NRn+w4eOCl0SnWyFV69urM9imkoeoXMKceAROyh0=" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.i6fp8gf8qd.js", + "AssetFile": "lib/indotalent/date-format-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i6fp8gf8qd" + }, + { + "Name": "integrity", + "Value": "sha256-5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=" + }, + { + "Name": "label", + "Value": "lib/indotalent/date-format-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.i6fp8gf8qd.js", + "AssetFile": "lib/indotalent/date-format-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "961" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i6fp8gf8qd" + }, + { + "Name": "integrity", + "Value": "sha256-5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=" + }, + { + "Name": "label", + "Value": "lib/indotalent/date-format-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.i6fp8gf8qd.js.gz", + "AssetFile": "lib/indotalent/date-format-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "i6fp8gf8qd" + }, + { + "Name": "integrity", + "Value": "sha256-PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=" + }, + { + "Name": "label", + "Value": "lib/indotalent/date-format-manager.js.gz" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.js", + "AssetFile": "lib/indotalent/date-format-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.002840909091" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=\"" + }, + { + "Name": "ETag", + "Value": "W/\"5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.js", + "AssetFile": "lib/indotalent/date-format-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "961" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-5q5EdrDgb+CD9wtkNYiQjxBbaRRT7/YeDAm/8eI+Ifw=" + } + ] + }, + { + "Route": "lib/indotalent/date-format-manager.js.gz", + "AssetFile": "lib/indotalent/date-format-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "351" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PM2XuT5vDd5GWuC5CoGWKbNILHu6xpDFH7Axx/813nM=" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.a95yye13cc.js", + "AssetFile": "lib/indotalent/number-format-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003225806452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a95yye13cc" + }, + { + "Name": "integrity", + "Value": "sha256-Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=" + }, + { + "Name": "label", + "Value": "lib/indotalent/number-format-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.a95yye13cc.js", + "AssetFile": "lib/indotalent/number-format-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a95yye13cc" + }, + { + "Name": "integrity", + "Value": "sha256-Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=" + }, + { + "Name": "label", + "Value": "lib/indotalent/number-format-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.a95yye13cc.js.gz", + "AssetFile": "lib/indotalent/number-format-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "a95yye13cc" + }, + { + "Name": "integrity", + "Value": "sha256-4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=" + }, + { + "Name": "label", + "Value": "lib/indotalent/number-format-manager.js.gz" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.js", + "AssetFile": "lib/indotalent/number-format-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.003225806452" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.js", + "AssetFile": "lib/indotalent/number-format-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1031" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Hnkq3eCVBilPfu9mFI42TXCNMFj1n8hdqml9CsB1Eps=" + } + ] + }, + { + "Route": "lib/indotalent/number-format-manager.js.gz", + "AssetFile": "lib/indotalent/number-format-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "309" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4IJK4Cs6tqsuOBkt0pGS2XwWtQ48uhTp4VtBkdppXTo=" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.js", + "AssetFile": "lib/indotalent/security-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001858736059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.js", + "AssetFile": "lib/indotalent/security-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.js.gz", + "AssetFile": "lib/indotalent/security-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.nllqzy8jpe.js", + "AssetFile": "lib/indotalent/security-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001858736059" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nllqzy8jpe" + }, + { + "Name": "integrity", + "Value": "sha256-JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=" + }, + { + "Name": "label", + "Value": "lib/indotalent/security-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.nllqzy8jpe.js", + "AssetFile": "lib/indotalent/security-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1818" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nllqzy8jpe" + }, + { + "Name": "integrity", + "Value": "sha256-JQVq1O6RVpGN3QcwNWw+N6LRftPQLEIXo1R3wV5n9mg=" + }, + { + "Name": "label", + "Value": "lib/indotalent/security-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/security-manager.nllqzy8jpe.js.gz", + "AssetFile": "lib/indotalent/security-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "537" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "nllqzy8jpe" + }, + { + "Name": "integrity", + "Value": "sha256-PHL17cgW/4F5VsS8a3of9TNP9O77lpXVlX7knJB70OU=" + }, + { + "Name": "label", + "Value": "lib/indotalent/security-manager.js.gz" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.js", + "AssetFile": "lib/indotalent/storage-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001004016064" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.js", + "AssetFile": "lib/indotalent/storage-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.js.gz", + "AssetFile": "lib/indotalent/storage-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.vtoexcko5r.js", + "AssetFile": "lib/indotalent/storage-manager.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.001004016064" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtoexcko5r" + }, + { + "Name": "integrity", + "Value": "sha256-Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=" + }, + { + "Name": "label", + "Value": "lib/indotalent/storage-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.vtoexcko5r.js", + "AssetFile": "lib/indotalent/storage-manager.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4674" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtoexcko5r" + }, + { + "Name": "integrity", + "Value": "sha256-Mybcg6cdJ2d4Yv9WGPxgQvbAQS5P8MjdE56H6MyxLYk=" + }, + { + "Name": "label", + "Value": "lib/indotalent/storage-manager.js" + } + ] + }, + { + "Route": "lib/indotalent/storage-manager.vtoexcko5r.js.gz", + "AssetFile": "lib/indotalent/storage-manager.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "995" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "vtoexcko5r" + }, + { + "Name": "integrity", + "Value": "sha256-zVMPB3yqn+6uZGWuRm1eGffhiAdKaYFe8AGjBjUc9l0=" + }, + { + "Name": "label", + "Value": "lib/indotalent/storage-manager.js.gz" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000388198758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "31225" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.exoevqxwaz.css", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000388198758" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=\"" + }, + { + "Name": "ETag", + "Value": "W/\"sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "exoevqxwaz" + }, + { + "Name": "integrity", + "Value": "sha256-sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=" + }, + { + "Name": "label", + "Value": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.exoevqxwaz.css", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "31225" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "exoevqxwaz" + }, + { + "Name": "integrity", + "Value": "sha256-sqyIrTQvWIVSmMkR5cXncP8djJ6dxPZjNhs9eBOyMQk=" + }, + { + "Name": "label", + "Value": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css" + } + ] + }, + { + "Route": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.exoevqxwaz.css.gz", + "AssetFile": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "2575" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "exoevqxwaz" + }, + { + "Name": "integrity", + "Value": "sha256-qXJ0aXMGZejL24iOgbXQoINulX7nTYQKtsA16xK+RMU=" + }, + { + "Name": "label", + "Value": "lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css.gz" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.85hcwkfdyy.js", + "AssetFile": "lib/sweetalert/sweetalert2v11.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000052424640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85hcwkfdyy" + }, + { + "Name": "integrity", + "Value": "sha256-zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=" + }, + { + "Name": "label", + "Value": "lib/sweetalert/sweetalert2v11.js" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.85hcwkfdyy.js", + "AssetFile": "lib/sweetalert/sweetalert2v11.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "70723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85hcwkfdyy" + }, + { + "Name": "integrity", + "Value": "sha256-zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=" + }, + { + "Name": "label", + "Value": "lib/sweetalert/sweetalert2v11.js" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.85hcwkfdyy.js.gz", + "AssetFile": "lib/sweetalert/sweetalert2v11.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "85hcwkfdyy" + }, + { + "Name": "integrity", + "Value": "sha256-/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=" + }, + { + "Name": "label", + "Value": "lib/sweetalert/sweetalert2v11.js.gz" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.js", + "AssetFile": "lib/sweetalert/sweetalert2v11.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000052424640" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.js", + "AssetFile": "lib/sweetalert/sweetalert2v11.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "70723" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zAEX3qQxE5tHX13VnhJIBlaldWcXpgoUNz8vP/PzjXg=" + } + ] + }, + { + "Route": "lib/sweetalert/sweetalert2v11.js.gz", + "AssetFile": "lib/sweetalert/sweetalert2v11.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "19074" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-/3LN97z5uyNEDLRXIt7U6zlRODUxN1TwUinic8/yFP8=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.css", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003007519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332499" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.css", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2811025" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.css.gz", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332499" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.v8x6k0gi0w.css", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003007519" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332499" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=\"" + }, + { + "Name": "ETag", + "Value": "W/\"zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8x6k0gi0w" + }, + { + "Name": "integrity", + "Value": "sha256-zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.v8x6k0gi0w.css", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2811025" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8x6k0gi0w" + }, + { + "Name": "integrity", + "Value": "sha256-zwG3nBp4+s5wg3En8OmNTyglwXblJ7uXNU7wzF0x7IU=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5-dark.v8x6k0gi0w.css.gz", + "AssetFile": "lib/syncfusion/css/bootstrap5-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332499" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "v8x6k0gi0w" + }, + { + "Name": "integrity", + "Value": "sha256-qPzW0afyQu8fGa3uagDE90lbIKG+9s0NeaXTvTiDssw=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5-dark.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.23hfjsc4ne.css", + "AssetFile": "lib/syncfusion/css/bootstrap5.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003008958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hfjsc4ne" + }, + { + "Name": "integrity", + "Value": "sha256-wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.23hfjsc4ne.css", + "AssetFile": "lib/syncfusion/css/bootstrap5.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2811098" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hfjsc4ne" + }, + { + "Name": "integrity", + "Value": "sha256-wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.23hfjsc4ne.css.gz", + "AssetFile": "lib/syncfusion/css/bootstrap5.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "23hfjsc4ne" + }, + { + "Name": "integrity", + "Value": "sha256-agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/bootstrap5.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.css", + "AssetFile": "lib/syncfusion/css/bootstrap5.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003008958" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=\"" + }, + { + "Name": "ETag", + "Value": "W/\"wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.css", + "AssetFile": "lib/syncfusion/css/bootstrap5.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2811098" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wlg39ZV2DvDqrwmWri3Xc5W6BL7MMZEIaKFwdcwpbac=" + } + ] + }, + { + "Route": "lib/syncfusion/css/bootstrap5.css.gz", + "AssetFile": "lib/syncfusion/css/bootstrap5.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "332340" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-agwKmAfYiLy4dzTO4jg9+0ryBooM+Ws7ftibqhh8/1g=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.44jae26582.css", + "AssetFile": "lib/syncfusion/css/material-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002596404" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "385147" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44jae26582" + }, + { + "Name": "integrity", + "Value": "sha256-vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.44jae26582.css", + "AssetFile": "lib/syncfusion/css/material-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3421485" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44jae26582" + }, + { + "Name": "integrity", + "Value": "sha256-vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.44jae26582.css.gz", + "AssetFile": "lib/syncfusion/css/material-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "385147" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "44jae26582" + }, + { + "Name": "integrity", + "Value": "sha256-Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material-dark.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.css", + "AssetFile": "lib/syncfusion/css/material-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002596404" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "385147" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=\"" + }, + { + "Name": "ETag", + "Value": "W/\"vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.css", + "AssetFile": "lib/syncfusion/css/material-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3421485" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-vMpq04whsM+oBm6D0iqspwWmR2zcUQ6bOke1NNn34kM=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material-dark.css.gz", + "AssetFile": "lib/syncfusion/css/material-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "385147" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Y7g/Thtjn5l9DWVx6YkrL6+OXQP+Gf/WO0ggR8ujdUA=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.css", + "AssetFile": "lib/syncfusion/css/material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002234193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "447588" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=\"" + }, + { + "Name": "ETag", + "Value": "W/\"psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.css", + "AssetFile": "lib/syncfusion/css/material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3443689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.css.gz", + "AssetFile": "lib/syncfusion/css/material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "447588" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.mh2z8f69tg.css", + "AssetFile": "lib/syncfusion/css/material.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000002234193" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "447588" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=\"" + }, + { + "Name": "ETag", + "Value": "W/\"psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mh2z8f69tg" + }, + { + "Name": "integrity", + "Value": "sha256-psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.mh2z8f69tg.css", + "AssetFile": "lib/syncfusion/css/material.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3443689" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mh2z8f69tg" + }, + { + "Name": "integrity", + "Value": "sha256-psSyxovYRKmquTgXacyVDOYSb6VflloiGIevyg8nb0I=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/material.mh2z8f69tg.css.gz", + "AssetFile": "lib/syncfusion/css/material.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "447588" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "mh2z8f69tg" + }, + { + "Name": "integrity", + "Value": "sha256-3wWLqV9iZy1u80hneW0C8d58nEeBQm898Hsz0z2DU44=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/material.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.4mtc497wsu.css", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003119833" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320529" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4mtc497wsu" + }, + { + "Name": "integrity", + "Value": "sha256-7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.4mtc497wsu.css", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2793811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4mtc497wsu" + }, + { + "Name": "integrity", + "Value": "sha256-7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind-dark.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.4mtc497wsu.css.gz", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320529" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4mtc497wsu" + }, + { + "Name": "integrity", + "Value": "sha256-mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind-dark.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.css", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003119833" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320529" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.css", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2793811" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-7NjUDpYUYOFx5OUiq0UmPamNZnYstgdLYvw5gzH9HoQ=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind-dark.css.gz", + "AssetFile": "lib/syncfusion/css/tailwind-dark.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320529" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-mH532TheOGGTHbT//ZcF4qJTkNHGRgpQsDc/uvZBoeI=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.css", + "AssetFile": "lib/syncfusion/css/tailwind.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003121069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320402" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.css", + "AssetFile": "lib/syncfusion/css/tailwind.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2794553" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.css.gz", + "AssetFile": "lib/syncfusion/css/tailwind.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320402" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.qb6zfizwvl.css", + "AssetFile": "lib/syncfusion/css/tailwind.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000003121069" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320402" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=\"" + }, + { + "Name": "ETag", + "Value": "W/\"Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qb6zfizwvl" + }, + { + "Name": "integrity", + "Value": "sha256-Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.qb6zfizwvl.css", + "AssetFile": "lib/syncfusion/css/tailwind.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2794553" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qb6zfizwvl" + }, + { + "Name": "integrity", + "Value": "sha256-Os6sLy/kFyaJ/ZAsVeQR/pXXHYtk2dYRzUa+mx9WZJU=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind.css" + } + ] + }, + { + "Route": "lib/syncfusion/css/tailwind.qb6zfizwvl.css.gz", + "AssetFile": "lib/syncfusion/css/tailwind.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "320402" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "qb6zfizwvl" + }, + { + "Name": "integrity", + "Value": "sha256-UD+Vw25dMNd5tCMpy3DUvFYUVij8lbKV/BCn5BpEXHI=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/css/tailwind.css.gz" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.4axjtj7sen.js", + "AssetFile": "lib/syncfusion/js/ej2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000000310368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3221984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4axjtj7sen" + }, + { + "Name": "integrity", + "Value": "sha256-xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/js/ej2.min.js" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.4axjtj7sen.js", + "AssetFile": "lib/syncfusion/js/ej2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14988434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4axjtj7sen" + }, + { + "Name": "integrity", + "Value": "sha256-xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/js/ej2.min.js" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.4axjtj7sen.js.gz", + "AssetFile": "lib/syncfusion/js/ej2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3221984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4axjtj7sen" + }, + { + "Name": "integrity", + "Value": "sha256-3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=" + }, + { + "Name": "label", + "Value": "lib/syncfusion/js/ej2.min.js.gz" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.js", + "AssetFile": "lib/syncfusion/js/ej2.min.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000000310368" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3221984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=\"" + }, + { + "Name": "ETag", + "Value": "W/\"xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.js", + "AssetFile": "lib/syncfusion/js/ej2.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14988434" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-xPdtV311cwrvGik3UFwBT5AVEe6klmgxq6FaE7fXCNg=" + } + ] + }, + { + "Route": "lib/syncfusion/js/ej2.min.js.gz", + "AssetFile": "lib/syncfusion/js/ej2.min.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "3221984" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-3OiltC7YzZxysflkEuHFCd4zY0muxfG9UBibnswtLVk=" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.0k1uw388t1.js", + "AssetFile": "lib/vue/vue.global.prod.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017329521" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0k1uw388t1" + }, + { + "Name": "integrity", + "Value": "sha256-YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=" + }, + { + "Name": "label", + "Value": "lib/vue/vue.global.prod.js" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.0k1uw388t1.js", + "AssetFile": "lib/vue/vue.global.prod.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "157933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0k1uw388t1" + }, + { + "Name": "integrity", + "Value": "sha256-YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=" + }, + { + "Name": "label", + "Value": "lib/vue/vue.global.prod.js" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.0k1uw388t1.js.gz", + "AssetFile": "lib/vue/vue.global.prod.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0k1uw388t1" + }, + { + "Name": "integrity", + "Value": "sha256-qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=" + }, + { + "Name": "label", + "Value": "lib/vue/vue.global.prod.js.gz" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.js", + "AssetFile": "lib/vue/vue.global.prod.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.000017329521" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=\"" + }, + { + "Name": "ETag", + "Value": "W/\"YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.js", + "AssetFile": "lib/vue/vue.global.prod.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "157933" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-YO+UVLcXWjFOKfGU2uRrIMYpliGY2y48OmEjV464Z7M=" + } + ] + }, + { + "Route": "lib/vue/vue.global.prod.js.gz", + "AssetFile": "lib/vue/vue.global.prod.js.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "57704" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qA0ZDeZvwfFfIf0xVbhxBWdRbuVpwHMpQ3hxSmr6icE=" + } + ] + }, + { + "Route": "nodocument.3r8b2a0bt1.txt", + "AssetFile": "nodocument.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "nodocument.txt" + } + ] + }, + { + "Route": "nodocument.3r8b2a0bt1.txt", + "AssetFile": "nodocument.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + }, + { + "Name": "label", + "Value": "nodocument.txt" + } + ] + }, + { + "Route": "nodocument.3r8b2a0bt1.txt.gz", + "AssetFile": "nodocument.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "3r8b2a0bt1" + }, + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + }, + { + "Name": "label", + "Value": "nodocument.txt.gz" + } + ] + }, + { + "Route": "nodocument.txt", + "AssetFile": "nodocument.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "0.041666666667" + } + ], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "ETag", + "Value": "W/\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "nodocument.txt", + "AssetFile": "nodocument.txt", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=" + } + ] + }, + { + "Route": "nodocument.txt.gz", + "AssetFile": "nodocument.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "23" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + }, + { + "Name": "Vary", + "Value": "Content-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Zd+4tKe+YyWXvSCQtbmshsT5I0pKoALzyCu8fniaMWo=" + } + ] + }, + { + "Route": "noimage.hwh2qsuy53.png", + "AssetFile": "noimage.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1687" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"IXEPi5edW+8ejLjt8XDwoQ6NqhCaj+u9/zH43LnFdaQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "hwh2qsuy53" + }, + { + "Name": "integrity", + "Value": "sha256-IXEPi5edW+8ejLjt8XDwoQ6NqhCaj+u9/zH43LnFdaQ=" + }, + { + "Name": "label", + "Value": "noimage.png" + } + ] + }, + { + "Route": "noimage.png", + "AssetFile": "noimage.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1687" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"IXEPi5edW+8ejLjt8XDwoQ6NqhCaj+u9/zH43LnFdaQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Thu, 20 Mar 2025 05:47:25 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-IXEPi5edW+8ejLjt8XDwoQ6NqhCaj+u9/zH43LnFdaQ=" + } + ] + } + ] +} \ No newline at end of file diff --git a/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.runtime.json b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.runtime.json new file mode 100644 index 0000000..48e87bc --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/ASPNET.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\travail\\Eval\\Free-CRM\\Presentation\\ASPNET\\wwwroot\\","D:\\travail\\Eval\\Free-CRM\\Presentation\\ASPNET\\","D:\\travail\\Eval\\Free-CRM\\Presentation\\ASPNET\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"adminlte":{"Children":{"css":{"Children":{"adminlte.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/adminlte.css"},"Patterns":null},"adminlte.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/adminlte.css.map"},"Patterns":null},"adminlte.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/adminlte.min.css"},"Patterns":null},"adminlte.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/adminlte.min.css.map"},"Patterns":null},"alt":{"Children":{"adminlte.components.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.components.css"},"Patterns":null},"adminlte.components.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.components.css.map"},"Patterns":null},"adminlte.components.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.components.min.css"},"Patterns":null},"adminlte.components.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.components.min.css.map"},"Patterns":null},"adminlte.core.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.core.css"},"Patterns":null},"adminlte.core.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.core.css.map"},"Patterns":null},"adminlte.core.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.core.min.css"},"Patterns":null},"adminlte.core.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.core.min.css.map"},"Patterns":null},"adminlte.extra-components.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.extra-components.css"},"Patterns":null},"adminlte.extra-components.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.extra-components.css.map"},"Patterns":null},"adminlte.extra-components.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.extra-components.min.css"},"Patterns":null},"adminlte.extra-components.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.extra-components.min.css.map"},"Patterns":null},"adminlte.pages.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.pages.css"},"Patterns":null},"adminlte.pages.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.pages.css.map"},"Patterns":null},"adminlte.pages.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.pages.min.css"},"Patterns":null},"adminlte.pages.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.pages.min.css.map"},"Patterns":null},"adminlte.plugins.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.plugins.css"},"Patterns":null},"adminlte.plugins.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.plugins.css.map"},"Patterns":null},"adminlte.plugins.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.plugins.min.css"},"Patterns":null},"adminlte.plugins.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/css/alt/adminlte.plugins.min.css.map"},"Patterns":null},"adminlte.components.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wiclowq0sj-t2g91q58sv.gz"},"Patterns":null},"adminlte.components.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bqme5u3m32-qfys9kxu5t.gz"},"Patterns":null},"adminlte.components.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o95sqzs66a-o1dlgwxsu9.gz"},"Patterns":null},"adminlte.components.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x98lqdf1n2-jly7ewalzr.gz"},"Patterns":null},"adminlte.core.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zbbti9jwrh-8be2bkbw3l.gz"},"Patterns":null},"adminlte.core.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qae3pgyy68-zi735c1a3o.gz"},"Patterns":null},"adminlte.core.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugr9544xfb-xapuyrsvoc.gz"},"Patterns":null},"adminlte.core.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yvmlequlik-666hqp8ynl.gz"},"Patterns":null},"adminlte.extra-components.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"58ltsh20nf-lk54s89tzl.gz"},"Patterns":null},"adminlte.extra-components.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w4hqcgdm7f-mjc83mai68.gz"},"Patterns":null},"adminlte.extra-components.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xbd27395qn-z8ogwuvt9p.gz"},"Patterns":null},"adminlte.extra-components.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0zlllxotuf-sxksbgs8mn.gz"},"Patterns":null},"adminlte.pages.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"n5j5ccwt9q-izhfi01wvq.gz"},"Patterns":null},"adminlte.pages.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8ika9l2t5r-d5hmib0pbr.gz"},"Patterns":null},"adminlte.pages.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q3udckvjvs-oite168kkq.gz"},"Patterns":null},"adminlte.pages.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vdbx7i31s3-ofxdqbhs25.gz"},"Patterns":null},"adminlte.plugins.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4fet3d5fy9-qddkoqtli1.gz"},"Patterns":null},"adminlte.plugins.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3emt1nbihu-a8iltv48sy.gz"},"Patterns":null},"adminlte.plugins.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p5kp2w89jk-otekwowxsg.gz"},"Patterns":null},"adminlte.plugins.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"n1izzai8co-maq0dmubh2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"adminlte.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eidzhq5ujb-m18sojhagi.gz"},"Patterns":null},"adminlte.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rlbtp43die-apeiq82xqi.gz"},"Patterns":null},"adminlte.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"up40qvpvam-jht1g3njih.gz"},"Patterns":null},"adminlte.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lwng4bjckz-x4s5v08xg0.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"AdminLTELogo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/AdminLTELogo.png"},"Patterns":null},"avatar.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/avatar.png"},"Patterns":null},"avatar2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/avatar2.png"},"Patterns":null},"avatar3.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/avatar3.png"},"Patterns":null},"avatar4.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/avatar4.png"},"Patterns":null},"avatar5.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/avatar5.png"},"Patterns":null},"boxed-bg.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/boxed-bg.jpg"},"Patterns":null},"boxed-bg.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/boxed-bg.png"},"Patterns":null},"credit":{"Children":{"american-express.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/american-express.png"},"Patterns":null},"cirrus.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/cirrus.png"},"Patterns":null},"mastercard.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/mastercard.png"},"Patterns":null},"paypal.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/paypal.png"},"Patterns":null},"paypal2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/paypal2.png"},"Patterns":null},"visa.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/credit/visa.png"},"Patterns":null}},"Asset":null,"Patterns":null},"default-150x150.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/default-150x150.png"},"Patterns":null},"icons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/icons.png"},"Patterns":null},"photo1.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/photo1.png"},"Patterns":null},"photo2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/photo2.png"},"Patterns":null},"photo3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/photo3.jpg"},"Patterns":null},"photo4.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/photo4.jpg"},"Patterns":null},"prod-1.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/prod-1.jpg"},"Patterns":null},"prod-2.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/prod-2.jpg"},"Patterns":null},"prod-3.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/prod-3.jpg"},"Patterns":null},"prod-4.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/prod-4.jpg"},"Patterns":null},"prod-5.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/prod-5.jpg"},"Patterns":null},"user1-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user1-128x128.jpg"},"Patterns":null},"user2-160x160.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user2-160x160.jpg"},"Patterns":null},"user3-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user3-128x128.jpg"},"Patterns":null},"user4-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user4-128x128.jpg"},"Patterns":null},"user5-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user5-128x128.jpg"},"Patterns":null},"user6-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user6-128x128.jpg"},"Patterns":null},"user7-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user7-128x128.jpg"},"Patterns":null},"user8-128x128.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/img/user8-128x128.jpg"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{".eslintrc.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/.eslintrc.json"},"Patterns":null},"adminlte.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/adminlte.js"},"Patterns":null},"adminlte.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/adminlte.js.map"},"Patterns":null},"adminlte.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/adminlte.min.js"},"Patterns":null},"adminlte.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/adminlte.min.js.map"},"Patterns":null},"demo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/demo.js"},"Patterns":null},"pages":{"Children":{"dashboard.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/pages/dashboard.js"},"Patterns":null},"dashboard2.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/pages/dashboard2.js"},"Patterns":null},"dashboard3.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/js/pages/dashboard3.js"},"Patterns":null},"dashboard.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0kd41r65tm-6m5ktcz08b.gz"},"Patterns":null},"dashboard2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6vnecwu23c-jcitzkfdw9.gz"},"Patterns":null},"dashboard3.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2mu0ijif27-iwyywynqhh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},".eslintrc.json.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yco235kyix-reekxv40v8.gz"},"Patterns":null},"adminlte.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iysxkn9q0y-vmehleoteh.gz"},"Patterns":null},"adminlte.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"llyazifmvx-yfvxh73iuu.gz"},"Patterns":null},"adminlte.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bzktm39eqo-duhl7u4qjv.gz"},"Patterns":null},"adminlte.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xb6gzyr3es-zw7x4mjs6y.gz"},"Patterns":null},"demo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qophjy5u10-hegzuu81q6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"plugins":{"Children":{"bootstrap-colorpicker":{"Children":{"css":{"Children":{"bootstrap-colorpicker.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css"},"Patterns":null},"bootstrap-colorpicker.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.css.map"},"Patterns":null},"bootstrap-colorpicker.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css"},"Patterns":null},"bootstrap-colorpicker.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map"},"Patterns":null},"bootstrap-colorpicker.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5ilg4dwntf-c6s7kjz2aw.gz"},"Patterns":null},"bootstrap-colorpicker.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"my34sahmpv-rq6ftmralk.gz"},"Patterns":null},"bootstrap-colorpicker.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7qe5bzeg4m-nhnjqb8n9t.gz"},"Patterns":null},"bootstrap-colorpicker.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pxqij5lhd2-2udc9l3jt7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap-colorpicker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js"},"Patterns":null},"bootstrap-colorpicker.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js.map"},"Patterns":null},"bootstrap-colorpicker.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js"},"Patterns":null},"bootstrap-colorpicker.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js.map"},"Patterns":null},"bootstrap-colorpicker.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uhdmpapcwd-yf1d69avuu.gz"},"Patterns":null},"bootstrap-colorpicker.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9nvyxi98od-1b18im6hz6.gz"},"Patterns":null},"bootstrap-colorpicker.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1aivthucjv-c5aexzrvms.gz"},"Patterns":null},"bootstrap-colorpicker.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9tkxlfbpvi-qu629hq1aa.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap-slider":{"Children":{"bootstrap-slider.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-slider/bootstrap-slider.js"},"Patterns":null},"bootstrap-slider.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-slider/bootstrap-slider.min.js"},"Patterns":null},"css":{"Children":{"bootstrap-slider.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-slider/css/bootstrap-slider.css"},"Patterns":null},"bootstrap-slider.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-slider/css/bootstrap-slider.min.css"},"Patterns":null},"bootstrap-slider.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h2w6hgjps0-ar54r9r2l4.gz"},"Patterns":null},"bootstrap-slider.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vx3yhudded-3tpjqeifhk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap-slider.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t1d6r7v5u9-dn4p5039lr.gz"},"Patterns":null},"bootstrap-slider.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l430zpbmlh-q16u1lqa0x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap-switch":{"Children":{"css":{"Children":{"bootstrap2":{"Children":{"bootstrap-switch.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css"},"Patterns":null},"bootstrap-switch.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css"},"Patterns":null},"bootstrap-switch.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dhxqxcawvv-k3cfaeu6m9.gz"},"Patterns":null},"bootstrap-switch.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y0p0b4nh0n-0o063kqmo0.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap3":{"Children":{"bootstrap-switch.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css"},"Patterns":null},"bootstrap-switch.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css"},"Patterns":null},"bootstrap-switch.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4943gfq6dg-sanj5sweqd.gz"},"Patterns":null},"bootstrap-switch.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bbcy6diw1o-nfon3evr3b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap-switch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/js/bootstrap-switch.js"},"Patterns":null},"bootstrap-switch.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap-switch/js/bootstrap-switch.min.js"},"Patterns":null},"bootstrap-switch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nfql99kbqn-rzno7amm9x.gz"},"Patterns":null},"bootstrap-switch.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3b49hw6px5-7tb7eukg00.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap4-duallistbox":{"Children":{"bootstrap-duallistbox.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.css"},"Patterns":null},"bootstrap-duallistbox.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap4-duallistbox/bootstrap-duallistbox.min.css"},"Patterns":null},"jquery.bootstrap-duallistbox.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.js"},"Patterns":null},"jquery.bootstrap-duallistbox.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap4-duallistbox/jquery.bootstrap-duallistbox.min.js"},"Patterns":null},"bootstrap-duallistbox.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1qkoiu67kr-9futv0purj.gz"},"Patterns":null},"bootstrap-duallistbox.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"66fzpkrtng-ybw3jqk99w.gz"},"Patterns":null},"jquery.bootstrap-duallistbox.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4o79zwftbk-po5ole0p17.gz"},"Patterns":null},"jquery.bootstrap-duallistbox.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l6gdzpd1qc-4a720thlf0.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap":{"Children":{"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bootstrap/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cc651fvtyw-4bqpgft7cy.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"chkga5o0a7-lvacmjdy9i.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ni8zvfjfx6-7qkp3v2h36.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gvehe71v30-e5uqm16rp6.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6x90hgmokd-5v7kidqsie.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zuabyvmqkn-o3jle8hwwp.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e8q4yt0407-sc9grb142d.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"slvoiitcaa-rgpsy9uzoj.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"bs-custom-file-input":{"Children":{"bs-custom-file-input.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js"},"Patterns":null},"bs-custom-file-input.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-custom-file-input/bs-custom-file-input.js.map"},"Patterns":null},"bs-custom-file-input.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js"},"Patterns":null},"bs-custom-file-input.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-custom-file-input/bs-custom-file-input.min.js.map"},"Patterns":null},"bs-custom-file-input.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vsfnvimx9i-0djt4x4dwb.gz"},"Patterns":null},"bs-custom-file-input.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8xfulcutlm-x1t4ger0j7.gz"},"Patterns":null},"bs-custom-file-input.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ghe2bosxgp-iaw1y0hnmh.gz"},"Patterns":null},"bs-custom-file-input.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6d5qgd9m0i-zgrb9rykue.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bs-stepper":{"Children":{"css":{"Children":{"bs-stepper.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/css/bs-stepper.css"},"Patterns":null},"bs-stepper.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/css/bs-stepper.css.map"},"Patterns":null},"bs-stepper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/css/bs-stepper.min.css"},"Patterns":null},"bs-stepper.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/css/bs-stepper.min.css.map"},"Patterns":null},"bs-stepper.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r8m9yiyn1t-dbwf3ub7kb.gz"},"Patterns":null},"bs-stepper.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"trz8uz308b-krefq7tol2.gz"},"Patterns":null},"bs-stepper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xxuzyex0oe-gotvrtubn3.gz"},"Patterns":null},"bs-stepper.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wpuxha2o60-qnh0dfmtrw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bs-stepper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/js/bs-stepper.js"},"Patterns":null},"bs-stepper.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/js/bs-stepper.js.map"},"Patterns":null},"bs-stepper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/js/bs-stepper.min.js"},"Patterns":null},"bs-stepper.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/bs-stepper/js/bs-stepper.min.js.map"},"Patterns":null},"bs-stepper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"71ill6mt4x-5xh6n88uv8.gz"},"Patterns":null},"bs-stepper.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"63epmrfwhm-pu8gxnd8o0.gz"},"Patterns":null},"bs-stepper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"91xzcda95t-698euj8k4e.gz"},"Patterns":null},"bs-stepper.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"91jp4pltd4-vx8kere3jb.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"chart.js":{"Children":{"Chart.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.bundle.js"},"Patterns":null},"Chart.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.bundle.min.js"},"Patterns":null},"Chart.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.css"},"Patterns":null},"Chart.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.js"},"Patterns":null},"Chart.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.min.css"},"Patterns":null},"Chart.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/chart.js/Chart.min.js"},"Patterns":null},"Chart.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g9qraw4t1y-fqegk8fqnn.gz"},"Patterns":null},"Chart.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aluofkbr3b-ez5nmyv303.gz"},"Patterns":null},"Chart.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sedhe8w5nm-c6nyh32yx9.gz"},"Patterns":null},"Chart.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gk11yr4uuq-godga2crup.gz"},"Patterns":null},"Chart.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i81i1wy568-zxtkyfow31.gz"},"Patterns":null},"Chart.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xflhkflt7v-79wajdobwg.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"codemirror":{"Children":{"addon":{"Children":{"comment":{"Children":{"comment.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/comment/comment.js"},"Patterns":null},"continuecomment.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/comment/continuecomment.js"},"Patterns":null},"comment.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9u4wy76lgv-b2c3blhcvn.gz"},"Patterns":null},"continuecomment.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q8ra8p0hjc-qzpv5z0b42.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dialog":{"Children":{"dialog.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/dialog/dialog.css"},"Patterns":null},"dialog.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/dialog/dialog.js"},"Patterns":null},"dialog.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ujf1ywes8y-g3rrrite1n.gz"},"Patterns":null},"dialog.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e9fupj64rs-o6bcsia845.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"display":{"Children":{"autorefresh.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/autorefresh.js"},"Patterns":null},"fullscreen.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/fullscreen.css"},"Patterns":null},"fullscreen.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/fullscreen.js"},"Patterns":null},"panel.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/panel.js"},"Patterns":null},"placeholder.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/placeholder.js"},"Patterns":null},"rulers.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/display/rulers.js"},"Patterns":null},"autorefresh.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9sv5rau5mk-tazrs1izcu.gz"},"Patterns":null},"fullscreen.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"25lejogcfo-6x5lmaz4va.gz"},"Patterns":null},"fullscreen.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"khzkobb50c-0v3unceit5.gz"},"Patterns":null},"panel.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lr2z257t4k-uhzpy6957x.gz"},"Patterns":null},"placeholder.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hw4rumbz1v-rzqys9k6ac.gz"},"Patterns":null},"rulers.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m462ln6lvo-pc4dhs8mdl.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"edit":{"Children":{"closebrackets.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/closebrackets.js"},"Patterns":null},"closetag.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/closetag.js"},"Patterns":null},"continuelist.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/continuelist.js"},"Patterns":null},"matchbrackets.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/matchbrackets.js"},"Patterns":null},"matchtags.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/matchtags.js"},"Patterns":null},"trailingspace.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/edit/trailingspace.js"},"Patterns":null},"closebrackets.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wcay4r41i1-l0pvf1dm2s.gz"},"Patterns":null},"closetag.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p8kljsnshq-yn7rlki1ie.gz"},"Patterns":null},"continuelist.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sy0lfhde9h-kygmz4l5wn.gz"},"Patterns":null},"matchbrackets.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ahkywn5csc-r9hs3ijr0r.gz"},"Patterns":null},"matchtags.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4rxg7lmhqt-w1zbqaxpwy.gz"},"Patterns":null},"trailingspace.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p1lo7uij09-aecq5jsyu8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fold":{"Children":{"brace-fold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/brace-fold.js"},"Patterns":null},"comment-fold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/comment-fold.js"},"Patterns":null},"foldcode.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/foldcode.js"},"Patterns":null},"foldgutter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/foldgutter.css"},"Patterns":null},"foldgutter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/foldgutter.js"},"Patterns":null},"indent-fold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/indent-fold.js"},"Patterns":null},"markdown-fold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/markdown-fold.js"},"Patterns":null},"xml-fold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/fold/xml-fold.js"},"Patterns":null},"brace-fold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l9w5eg0qcn-kw4ynqamju.gz"},"Patterns":null},"comment-fold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"010l26eaxs-eq73n08r5o.gz"},"Patterns":null},"foldcode.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zys8xxdr2z-xvpk1v8ko8.gz"},"Patterns":null},"foldgutter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uhibb3f65m-2kykbcxy2b.gz"},"Patterns":null},"foldgutter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1w17eyapzo-g5lku7op3u.gz"},"Patterns":null},"indent-fold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"986pk5y5al-v6y5x2psy1.gz"},"Patterns":null},"markdown-fold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h1bgbtsepc-yiujiw0skf.gz"},"Patterns":null},"xml-fold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wuq10wed92-jxr8zegvo9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"hint":{"Children":{"anyword-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/anyword-hint.js"},"Patterns":null},"css-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/css-hint.js"},"Patterns":null},"html-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/html-hint.js"},"Patterns":null},"javascript-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/javascript-hint.js"},"Patterns":null},"show-hint.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/show-hint.css"},"Patterns":null},"show-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/show-hint.js"},"Patterns":null},"sql-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/sql-hint.js"},"Patterns":null},"xml-hint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/hint/xml-hint.js"},"Patterns":null},"anyword-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yz1bi9637n-v4jfh1how9.gz"},"Patterns":null},"css-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0bbpzvcgki-ui5znhxf6g.gz"},"Patterns":null},"html-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"decifanprz-87y5s8nnc8.gz"},"Patterns":null},"javascript-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kkcvsa3ob6-4ulzeswtlt.gz"},"Patterns":null},"show-hint.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wc611xq1vb-qss88tp377.gz"},"Patterns":null},"show-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vbp76nh2s9-phgapd1sl0.gz"},"Patterns":null},"sql-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w2jzhzd51d-gl5qc5vn52.gz"},"Patterns":null},"xml-hint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1y9uf915ib-6b7jfap20s.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lint":{"Children":{"coffeescript-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/coffeescript-lint.js"},"Patterns":null},"css-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/css-lint.js"},"Patterns":null},"html-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/html-lint.js"},"Patterns":null},"javascript-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/javascript-lint.js"},"Patterns":null},"json-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/json-lint.js"},"Patterns":null},"lint.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/lint.css"},"Patterns":null},"lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/lint.js"},"Patterns":null},"yaml-lint.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/lint/yaml-lint.js"},"Patterns":null},"coffeescript-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zblj753r6f-e2t69tdm78.gz"},"Patterns":null},"css-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ds44qk6d7r-gxn98nck2k.gz"},"Patterns":null},"html-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7mc96tye74-qg9rzxw52s.gz"},"Patterns":null},"javascript-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iws7git9oh-8scnum45uv.gz"},"Patterns":null},"json-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"njkq1e48ew-mfc7k8t9ge.gz"},"Patterns":null},"lint.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e8s18q7kc9-46jl75a892.gz"},"Patterns":null},"lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jtyqg24bg2-4zarttzsf0.gz"},"Patterns":null},"yaml-lint.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tk4jbq23ey-p35z83ipo1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"merge":{"Children":{"merge.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/merge/merge.css"},"Patterns":null},"merge.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/merge/merge.js"},"Patterns":null},"merge.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8svvctzv6i-o6p68tvgem.gz"},"Patterns":null},"merge.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jpgjotjjnm-8i2y6yvv04.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mode":{"Children":{"loadmode.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/mode/loadmode.js"},"Patterns":null},"multiplex.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/mode/multiplex.js"},"Patterns":null},"multiplex_test.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/mode/multiplex_test.js"},"Patterns":null},"overlay.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/mode/overlay.js"},"Patterns":null},"simple.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/mode/simple.js"},"Patterns":null},"loadmode.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kj4jtid3yw-uul5jfh1ps.gz"},"Patterns":null},"multiplex.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fcsbed7nst-7v5v1ehbgn.gz"},"Patterns":null},"multiplex_test.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"muyz5ujc6q-fw96nj8sqs.gz"},"Patterns":null},"overlay.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ufgamaz11z-shnna8x4ju.gz"},"Patterns":null},"simple.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i37wx7urzo-t31wex4t0w.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"runmode":{"Children":{"colorize.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/runmode/colorize.js"},"Patterns":null},"runmode-standalone.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/runmode/runmode-standalone.js"},"Patterns":null},"runmode.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/runmode/runmode.js"},"Patterns":null},"runmode.node.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/runmode/runmode.node.js"},"Patterns":null},"colorize.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wv15yetpx4-f9n4c95sds.gz"},"Patterns":null},"runmode-standalone.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"chhdfi2tjg-0vb6nau7va.gz"},"Patterns":null},"runmode.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tnyw0hkcyp-lxt7kj65jy.gz"},"Patterns":null},"runmode.node.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xpgmgqetvs-v5ht5ciqzi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"scroll":{"Children":{"annotatescrollbar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/scroll/annotatescrollbar.js"},"Patterns":null},"scrollpastend.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/scroll/scrollpastend.js"},"Patterns":null},"simplescrollbars.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/scroll/simplescrollbars.css"},"Patterns":null},"simplescrollbars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/scroll/simplescrollbars.js"},"Patterns":null},"annotatescrollbar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vcuc2zoetb-1og8e89vmk.gz"},"Patterns":null},"scrollpastend.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"255k92o48s-p7awges22h.gz"},"Patterns":null},"simplescrollbars.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"muo3o3jw5q-z4ehtcy985.gz"},"Patterns":null},"simplescrollbars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zyro4pa4fj-jtt2j3c6ml.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"search":{"Children":{"jump-to-line.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/jump-to-line.js"},"Patterns":null},"match-highlighter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/match-highlighter.js"},"Patterns":null},"matchesonscrollbar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/matchesonscrollbar.css"},"Patterns":null},"matchesonscrollbar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/matchesonscrollbar.js"},"Patterns":null},"search.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/search.js"},"Patterns":null},"searchcursor.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/search/searchcursor.js"},"Patterns":null},"jump-to-line.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"amt7yao28q-afhilzwyc6.gz"},"Patterns":null},"match-highlighter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o1zl2wckgo-6fu2e9m8h5.gz"},"Patterns":null},"matchesonscrollbar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5z7nvxstfm-gum8r199z0.gz"},"Patterns":null},"matchesonscrollbar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dnj6qh292j-023eh4yzw6.gz"},"Patterns":null},"search.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5pjjq8qqhs-3niyr4obmp.gz"},"Patterns":null},"searchcursor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"osrl7vca0b-a1spow2n4w.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"selection":{"Children":{"active-line.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/selection/active-line.js"},"Patterns":null},"mark-selection.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/selection/mark-selection.js"},"Patterns":null},"selection-pointer.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/selection/selection-pointer.js"},"Patterns":null},"active-line.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9kfh8inwix-u4marbj1fw.gz"},"Patterns":null},"mark-selection.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dukz00rkaj-dotyhvy8ft.gz"},"Patterns":null},"selection-pointer.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mmyx0fdp1g-d9hs4l4fsy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tern":{"Children":{"tern.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/tern/tern.css"},"Patterns":null},"tern.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/tern/tern.js"},"Patterns":null},"worker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/tern/worker.js"},"Patterns":null},"tern.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6d7iwhq8nl-7js79npbol.gz"},"Patterns":null},"tern.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kx4yzxc8g4-esfratvip3.gz"},"Patterns":null},"worker.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m7g87frgi9-36wy39bo44.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"wrap":{"Children":{"hardwrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/addon/wrap/hardwrap.js"},"Patterns":null},"hardwrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e027232kz3-yqyt915fe2.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"codemirror.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/codemirror.css"},"Patterns":null},"codemirror.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/codemirror.js"},"Patterns":null},"keymap":{"Children":{"emacs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/keymap/emacs.js"},"Patterns":null},"sublime.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/keymap/sublime.js"},"Patterns":null},"vim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/keymap/vim.js"},"Patterns":null},"emacs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gyw2i1dk3u-s4p5a5jloe.gz"},"Patterns":null},"sublime.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mjv6mfkf9a-cme95c8f7d.gz"},"Patterns":null},"vim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"npj2vduoty-tk11grwjo1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mode":{"Children":{"apl":{"Children":{"apl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/apl/apl.js"},"Patterns":null},"apl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nhvc27m7v7-xmwmmn8raj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"asciiarmor":{"Children":{"asciiarmor.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/asciiarmor/asciiarmor.js"},"Patterns":null},"asciiarmor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"if85jz6ced-q20aymbkyq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"asn.1":{"Children":{"asn.1.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/asn.1/asn.1.js"},"Patterns":null},"asn.1.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k59z5whbzf-m8kpn4c7bx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"asterisk":{"Children":{"asterisk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/asterisk/asterisk.js"},"Patterns":null},"asterisk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yqbnj5fqdp-5te24s5zqs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"brainfuck":{"Children":{"brainfuck.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/brainfuck/brainfuck.js"},"Patterns":null},"brainfuck.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0s2thtqqna-nlqyipsovw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"clike":{"Children":{"clike.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/clike/clike.js"},"Patterns":null},"clike.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5qeci0f1cw-ow0kk1z2c1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"clojure":{"Children":{"clojure.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/clojure/clojure.js"},"Patterns":null},"clojure.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jbsbbc9yko-9agunkxhgd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"cmake":{"Children":{"cmake.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/cmake/cmake.js"},"Patterns":null},"cmake.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7907o1m46l-22h0ftdhvn.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"cobol":{"Children":{"cobol.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/cobol/cobol.js"},"Patterns":null},"cobol.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"chp3ezmwtp-gyz8n6uibm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"coffeescript":{"Children":{"coffeescript.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/coffeescript/coffeescript.js"},"Patterns":null},"coffeescript.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l54hf01o12-29qdgfn1rj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"commonlisp":{"Children":{"commonlisp.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/commonlisp/commonlisp.js"},"Patterns":null},"commonlisp.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b3emp80oby-nodg4ckhq0.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"crystal":{"Children":{"crystal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/crystal/crystal.js"},"Patterns":null},"crystal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i22em0xb0j-dz0mzbg72o.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"css.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/css/css.js"},"Patterns":null},"css.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pblhfo7ul7-fssqv7tso4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"cypher":{"Children":{"cypher.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/cypher/cypher.js"},"Patterns":null},"cypher.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yro5dkas00-i087io9icm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dart":{"Children":{"dart.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/dart/dart.js"},"Patterns":null},"dart.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c0vh5gul73-kq2yankc1u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"diff":{"Children":{"diff.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/diff/diff.js"},"Patterns":null},"diff.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5yi3uwyb2y-c21j641emq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"django":{"Children":{"django.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/django/django.js"},"Patterns":null},"django.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gz802viq0m-c1jkx00e2n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dockerfile":{"Children":{"dockerfile.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/dockerfile/dockerfile.js"},"Patterns":null},"dockerfile.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0ax5nue5zd-nux7u5yeym.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dtd":{"Children":{"dtd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/dtd/dtd.js"},"Patterns":null},"dtd.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"94y7d8xtz6-902b10jlrk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dylan":{"Children":{"dylan.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/dylan/dylan.js"},"Patterns":null},"dylan.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zzeh6jolry-bk1k1az2ic.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"d":{"Children":{"d.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/d/d.js"},"Patterns":null},"d.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eayn9ytiqr-h3854yp0gy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ebnf":{"Children":{"ebnf.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ebnf/ebnf.js"},"Patterns":null},"ebnf.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3dr0ypkg73-8hdxe2wzzn.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ecl":{"Children":{"ecl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ecl/ecl.js"},"Patterns":null},"ecl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gt9ue3pv6t-qg2edxni8n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"eiffel":{"Children":{"eiffel.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/eiffel/eiffel.js"},"Patterns":null},"eiffel.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"46q4n63ubc-5teddvkaa5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"elm":{"Children":{"elm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/elm/elm.js"},"Patterns":null},"elm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f5tzoebcxa-qggif0y6o6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"erlang":{"Children":{"erlang.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/erlang/erlang.js"},"Patterns":null},"erlang.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y43v73wiek-ccej1jde1t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"factor":{"Children":{"factor.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/factor/factor.js"},"Patterns":null},"factor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x3ao95t0ew-4nopqwdi44.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fcl":{"Children":{"fcl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/fcl/fcl.js"},"Patterns":null},"fcl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9ajii8tsaa-nu61bnt23s.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"forth":{"Children":{"forth.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/forth/forth.js"},"Patterns":null},"forth.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ljihoivdyz-b3wcpmzmww.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fortran":{"Children":{"fortran.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/fortran/fortran.js"},"Patterns":null},"fortran.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y2hj5o5er0-f537f746kc.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"gas":{"Children":{"gas.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/gas/gas.js"},"Patterns":null},"gas.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hzm4n0d6jc-hz29xqk1ek.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"gfm":{"Children":{"gfm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/gfm/gfm.js"},"Patterns":null},"gfm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"heyov0refx-bgj4ypww0y.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"gherkin":{"Children":{"gherkin.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/gherkin/gherkin.js"},"Patterns":null},"gherkin.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uqbxhkiqt7-9eyedc9w6a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"go":{"Children":{"go.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/go/go.js"},"Patterns":null},"go.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ymxbqvkxk7-rjx9z3g2wp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"groovy":{"Children":{"groovy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/groovy/groovy.js"},"Patterns":null},"groovy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"txfyfn1vra-2ae3rhuc31.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"haml":{"Children":{"haml.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/haml/haml.js"},"Patterns":null},"haml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nytvurgu00-qnd7h8go9o.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"handlebars":{"Children":{"handlebars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/handlebars/handlebars.js"},"Patterns":null},"handlebars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gdaofy9due-w74g6e8i4t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"haskell-literate":{"Children":{"haskell-literate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/haskell-literate/haskell-literate.js"},"Patterns":null},"haskell-literate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i11utrddbu-7vnfdikkh5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"haskell":{"Children":{"haskell.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/haskell/haskell.js"},"Patterns":null},"haskell.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kltsdrxyku-dze6c9wykj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"haxe":{"Children":{"haxe.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/haxe/haxe.js"},"Patterns":null},"haxe.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xntjr49we4-rgkezed8q1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"htmlembedded":{"Children":{"htmlembedded.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/htmlembedded/htmlembedded.js"},"Patterns":null},"htmlembedded.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pxr8fc0bov-olcbh201q3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"htmlmixed":{"Children":{"htmlmixed.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/htmlmixed/htmlmixed.js"},"Patterns":null},"htmlmixed.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"scg61vj3qj-dzponal23g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"http":{"Children":{"http.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/http/http.js"},"Patterns":null},"http.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mwhzp37dz7-jevqpupksx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"idl":{"Children":{"idl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/idl/idl.js"},"Patterns":null},"idl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e5apw15pt9-3146ye9aqe.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"javascript":{"Children":{"javascript.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/javascript/javascript.js"},"Patterns":null},"javascript.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l926ja02r7-twebddf7x5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jinja2":{"Children":{"jinja2.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/jinja2/jinja2.js"},"Patterns":null},"jinja2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"27yf0atdm8-ygjq8f5w16.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jsx":{"Children":{"jsx.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/jsx/jsx.js"},"Patterns":null},"jsx.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vf4mbge1jd-joym8nqpdh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"julia":{"Children":{"julia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/julia/julia.js"},"Patterns":null},"julia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j2tmqspr7e-ucexmnyd8v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"livescript":{"Children":{"livescript.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/livescript/livescript.js"},"Patterns":null},"livescript.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kdquz5kzrh-sxjukx0a31.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lua":{"Children":{"lua.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/lua/lua.js"},"Patterns":null},"lua.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"smiavf9z12-79rfwceh0m.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"markdown":{"Children":{"markdown.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/markdown/markdown.js"},"Patterns":null},"markdown.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xxthho2709-9m934gvttd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mathematica":{"Children":{"mathematica.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mathematica/mathematica.js"},"Patterns":null},"mathematica.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4sp197yfjs-o8jdxgeqe3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mbox":{"Children":{"mbox.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mbox/mbox.js"},"Patterns":null},"mbox.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b8ul10ryrc-i8l2jrn430.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"meta.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/meta.js"},"Patterns":null},"mirc":{"Children":{"mirc.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mirc/mirc.js"},"Patterns":null},"mirc.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dn0pc4zfvx-cnywrc8wrd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mllike":{"Children":{"mllike.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mllike/mllike.js"},"Patterns":null},"mllike.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fioulmb7y5-mgvumivio7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"modelica":{"Children":{"modelica.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/modelica/modelica.js"},"Patterns":null},"modelica.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8kv5gnkcwo-3ksfk93kar.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mscgen":{"Children":{"mscgen.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mscgen/mscgen.js"},"Patterns":null},"mscgen.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tm7s5pwxdd-1f4mj5crka.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"mumps":{"Children":{"mumps.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/mumps/mumps.js"},"Patterns":null},"mumps.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rae7xb3fch-1n2sxffsbm.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"nginx":{"Children":{"nginx.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/nginx/nginx.js"},"Patterns":null},"nginx.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fz9z8pofzk-utlnydw8v2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"nsis":{"Children":{"nsis.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/nsis/nsis.js"},"Patterns":null},"nsis.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lt30v8eci7-bfnw19hadk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ntriples":{"Children":{"ntriples.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ntriples/ntriples.js"},"Patterns":null},"ntriples.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g6nfcjufbe-ktc4chfk5t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"octave":{"Children":{"octave.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/octave/octave.js"},"Patterns":null},"octave.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mns0igrlg0-j1gqqu3755.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"oz":{"Children":{"oz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/oz/oz.js"},"Patterns":null},"oz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iutnda5ju5-v9q80f9cka.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pascal":{"Children":{"pascal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/pascal/pascal.js"},"Patterns":null},"pascal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2q1p9fxmnh-91dz1turpa.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pegjs":{"Children":{"pegjs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/pegjs/pegjs.js"},"Patterns":null},"pegjs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bos1afhfuu-qje1b5ytv7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"perl":{"Children":{"perl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/perl/perl.js"},"Patterns":null},"perl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bwi9k6ixc9-f2q04c1636.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"php":{"Children":{"php.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/php/php.js"},"Patterns":null},"php.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r8vcws4pw7-doserzqcwe.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pig":{"Children":{"pig.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/pig/pig.js"},"Patterns":null},"pig.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a993m6j92x-q4nmayh5wc.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"powershell":{"Children":{"powershell.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/powershell/powershell.js"},"Patterns":null},"powershell.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x0gfdiwwwc-7mogid8nyc.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"properties":{"Children":{"properties.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/properties/properties.js"},"Patterns":null},"properties.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hv3a46v0wq-ofmwf76okf.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"protobuf":{"Children":{"protobuf.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/protobuf/protobuf.js"},"Patterns":null},"protobuf.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uvhn2tx9c3-ixze7ntn1v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pug":{"Children":{"pug.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/pug/pug.js"},"Patterns":null},"pug.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h2eifxahar-mrbkcxhnhx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"puppet":{"Children":{"puppet.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/puppet/puppet.js"},"Patterns":null},"puppet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t58dkb1zrl-acxor7y3l7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"python":{"Children":{"python.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/python/python.js"},"Patterns":null},"python.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1r0uyrex88-bttvy8j9so.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"q":{"Children":{"q.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/q/q.js"},"Patterns":null},"q.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m46slax3t9-1r5g9urjgd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"rpm":{"Children":{"rpm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/rpm/rpm.js"},"Patterns":null},"rpm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vo5vqvnqac-d2j4e35v8m.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"rst":{"Children":{"rst.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/rst/rst.js"},"Patterns":null},"rst.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kykal1r72f-egtvh8xgxw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ruby":{"Children":{"ruby.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ruby/ruby.js"},"Patterns":null},"ruby.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"40q1wbhaoy-6sgz64quio.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"rust":{"Children":{"rust.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/rust/rust.js"},"Patterns":null},"rust.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zucv6z7rem-dwh5lxu3p8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"r":{"Children":{"r.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/r/r.js"},"Patterns":null},"r.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0imggxh5yp-k9k2tuozc6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sass":{"Children":{"sass.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/sass/sass.js"},"Patterns":null},"sass.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rhpvn4b8gj-k2dtpf3pgh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sas":{"Children":{"sas.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/sas/sas.js"},"Patterns":null},"sas.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sbggc11sh0-gfadcpmhok.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"scheme":{"Children":{"scheme.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/scheme/scheme.js"},"Patterns":null},"scheme.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8a8qebrrb-v1oibrwkoe.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"shell":{"Children":{"shell.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/shell/shell.js"},"Patterns":null},"shell.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c86g4k3t0r-fgwbzgdorw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sieve":{"Children":{"sieve.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/sieve/sieve.js"},"Patterns":null},"sieve.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9ibvemcsb8-lwas4to6p9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"slim":{"Children":{"slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/slim/slim.js"},"Patterns":null},"slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"36e2l50brp-0eipwcppzz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"smalltalk":{"Children":{"smalltalk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/smalltalk/smalltalk.js"},"Patterns":null},"smalltalk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"awqsq4klq4-90llh4hmwr.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"smarty":{"Children":{"smarty.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/smarty/smarty.js"},"Patterns":null},"smarty.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kv281vcbxh-xou5939g5e.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"solr":{"Children":{"solr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/solr/solr.js"},"Patterns":null},"solr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zn8mnbuw9v-sbzigc9lc9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"soy":{"Children":{"soy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/soy/soy.js"},"Patterns":null},"soy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xl3wwve2ck-d98lv5zkly.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sparql":{"Children":{"sparql.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/sparql/sparql.js"},"Patterns":null},"sparql.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7chuxrw3zx-2472swju7v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"spreadsheet":{"Children":{"spreadsheet.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/spreadsheet/spreadsheet.js"},"Patterns":null},"spreadsheet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aywfddd2qz-3n3lvljl1o.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sql":{"Children":{"sql.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/sql/sql.js"},"Patterns":null},"sql.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"20cg1nprzr-dl87f3f2b6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"stex":{"Children":{"stex.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/stex/stex.js"},"Patterns":null},"stex.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"74sc7xg6eu-ce8b7yhm2p.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"stylus":{"Children":{"stylus.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/stylus/stylus.js"},"Patterns":null},"stylus.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"klnop39gc6-0aqpxxc3i9.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"swift":{"Children":{"swift.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/swift/swift.js"},"Patterns":null},"swift.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jzs2jf3csw-go08vb5ldv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tcl":{"Children":{"tcl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tcl/tcl.js"},"Patterns":null},"tcl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1rkzax3zbv-n5d2fl9ewx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"textile":{"Children":{"textile.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/textile/textile.js"},"Patterns":null},"textile.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"req3h4e057-cm7nqcl0ow.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tiddlywiki":{"Children":{"tiddlywiki.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css"},"Patterns":null},"tiddlywiki.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js"},"Patterns":null},"tiddlywiki.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q16cj2ei9u-fwszic81yn.gz"},"Patterns":null},"tiddlywiki.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"leg8bc76ky-bl2nyuon59.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tiki":{"Children":{"tiki.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tiki/tiki.css"},"Patterns":null},"tiki.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tiki/tiki.js"},"Patterns":null},"tiki.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x8yoymwveo-0u6xrbtw0i.gz"},"Patterns":null},"tiki.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m1g6pe5kcx-isja3yci8q.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"toml":{"Children":{"toml.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/toml/toml.js"},"Patterns":null},"toml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d2igewjrj0-e5dnetew2e.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tornado":{"Children":{"tornado.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/tornado/tornado.js"},"Patterns":null},"tornado.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dir6r53fq6-r3dj11zxdv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"troff":{"Children":{"troff.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/troff/troff.js"},"Patterns":null},"troff.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rwqahp4sbl-wegaqsyow2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ttcn-cfg":{"Children":{"ttcn-cfg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ttcn-cfg/ttcn-cfg.js"},"Patterns":null},"ttcn-cfg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oyupabmm73-938e99q702.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ttcn":{"Children":{"ttcn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/ttcn/ttcn.js"},"Patterns":null},"ttcn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1qhvepp3at-h0y4wxsz6p.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"turtle":{"Children":{"turtle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/turtle/turtle.js"},"Patterns":null},"turtle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eg4m6wiydn-qlc1cn1jcy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"twig":{"Children":{"twig.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/twig/twig.js"},"Patterns":null},"twig.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b49xozc7ra-qyk6st1htq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vbscript":{"Children":{"vbscript.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/vbscript/vbscript.js"},"Patterns":null},"vbscript.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u3pmus38or-764oi3dpda.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vb":{"Children":{"vb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/vb/vb.js"},"Patterns":null},"vb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ejphgee1ck-dzfvoic94h.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"velocity":{"Children":{"velocity.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/velocity/velocity.js"},"Patterns":null},"velocity.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oeyp0z6xap-xad0mlo94t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"verilog":{"Children":{"verilog.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/verilog/verilog.js"},"Patterns":null},"verilog.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ol2njv8sda-z0877i80m7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vhdl":{"Children":{"vhdl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/vhdl/vhdl.js"},"Patterns":null},"vhdl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"da9rp0lox6-cfvuyn2fow.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vue":{"Children":{"vue.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/vue/vue.js"},"Patterns":null},"vue.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yyq9e6ke0n-4au990fr9t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"wast":{"Children":{"wast.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/wast/wast.js"},"Patterns":null},"wast.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8tmjyazw5t-frt0kefo6g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"webidl":{"Children":{"webidl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/webidl/webidl.js"},"Patterns":null},"webidl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0fraqrvay6-6m1mal1rac.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"xml":{"Children":{"xml.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/xml/xml.js"},"Patterns":null},"xml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qiglamfx9c-pq6r45xycl.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"xquery":{"Children":{"xquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/xquery/xquery.js"},"Patterns":null},"xquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lg5f9xgrzb-8kyxmwvc20.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"yacas":{"Children":{"yacas.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/yacas/yacas.js"},"Patterns":null},"yacas.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7lpt5mf8in-rco7uriyv3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"yaml-frontmatter":{"Children":{"yaml-frontmatter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js"},"Patterns":null},"yaml-frontmatter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rkn42ynika-3izi2k4jhn.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"yaml":{"Children":{"yaml.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/yaml/yaml.js"},"Patterns":null},"yaml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wxfgk3yu52-ugbjh18lvq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"z80":{"Children":{"z80.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/mode/z80/z80.js"},"Patterns":null},"z80.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x86487784w-3qi5nws2ph.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"meta.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"trbhpbdld3-7vm8z7grxp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"theme":{"Children":{"3024-day.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/3024-day.css"},"Patterns":null},"3024-night.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/3024-night.css"},"Patterns":null},"abcdef.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/abcdef.css"},"Patterns":null},"ambiance-mobile.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ambiance-mobile.css"},"Patterns":null},"ambiance.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ambiance.css"},"Patterns":null},"ayu-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ayu-dark.css"},"Patterns":null},"ayu-mirage.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ayu-mirage.css"},"Patterns":null},"base16-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/base16-dark.css"},"Patterns":null},"base16-light.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/base16-light.css"},"Patterns":null},"bespin.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/bespin.css"},"Patterns":null},"blackboard.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/blackboard.css"},"Patterns":null},"cobalt.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/cobalt.css"},"Patterns":null},"colorforth.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/colorforth.css"},"Patterns":null},"darcula.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/darcula.css"},"Patterns":null},"dracula.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/dracula.css"},"Patterns":null},"duotone-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/duotone-dark.css"},"Patterns":null},"duotone-light.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/duotone-light.css"},"Patterns":null},"eclipse.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/eclipse.css"},"Patterns":null},"elegant.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/elegant.css"},"Patterns":null},"erlang-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/erlang-dark.css"},"Patterns":null},"gruvbox-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/gruvbox-dark.css"},"Patterns":null},"hopscotch.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/hopscotch.css"},"Patterns":null},"icecoder.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/icecoder.css"},"Patterns":null},"idea.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/idea.css"},"Patterns":null},"isotope.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/isotope.css"},"Patterns":null},"lesser-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/lesser-dark.css"},"Patterns":null},"liquibyte.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/liquibyte.css"},"Patterns":null},"lucario.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/lucario.css"},"Patterns":null},"material-darker.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/material-darker.css"},"Patterns":null},"material-ocean.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/material-ocean.css"},"Patterns":null},"material-palenight.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/material-palenight.css"},"Patterns":null},"material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/material.css"},"Patterns":null},"mbo.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/mbo.css"},"Patterns":null},"mdn-like.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/mdn-like.css"},"Patterns":null},"midnight.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/midnight.css"},"Patterns":null},"monokai.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/monokai.css"},"Patterns":null},"moxer.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/moxer.css"},"Patterns":null},"neat.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/neat.css"},"Patterns":null},"neo.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/neo.css"},"Patterns":null},"night.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/night.css"},"Patterns":null},"nord.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/nord.css"},"Patterns":null},"oceanic-next.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/oceanic-next.css"},"Patterns":null},"panda-syntax.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/panda-syntax.css"},"Patterns":null},"paraiso-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/paraiso-dark.css"},"Patterns":null},"paraiso-light.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/paraiso-light.css"},"Patterns":null},"pastel-on-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/pastel-on-dark.css"},"Patterns":null},"railscasts.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/railscasts.css"},"Patterns":null},"rubyblue.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/rubyblue.css"},"Patterns":null},"seti.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/seti.css"},"Patterns":null},"shadowfox.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/shadowfox.css"},"Patterns":null},"solarized.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/solarized.css"},"Patterns":null},"ssms.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ssms.css"},"Patterns":null},"the-matrix.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/the-matrix.css"},"Patterns":null},"tomorrow-night-bright.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/tomorrow-night-bright.css"},"Patterns":null},"tomorrow-night-eighties.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/tomorrow-night-eighties.css"},"Patterns":null},"ttcn.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/ttcn.css"},"Patterns":null},"twilight.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/twilight.css"},"Patterns":null},"vibrant-ink.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/vibrant-ink.css"},"Patterns":null},"xq-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/xq-dark.css"},"Patterns":null},"xq-light.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/xq-light.css"},"Patterns":null},"yeti.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/yeti.css"},"Patterns":null},"yonce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/yonce.css"},"Patterns":null},"zenburn.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/codemirror/theme/zenburn.css"},"Patterns":null},"3024-day.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"luh3r501mq-5aezoigmzp.gz"},"Patterns":null},"3024-night.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5z5rux5qqc-j5m5j26uus.gz"},"Patterns":null},"abcdef.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rvvw3gvw53-gnzpetyg3f.gz"},"Patterns":null},"ambiance-mobile.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ilfhbf840v-g896lwz2u7.gz"},"Patterns":null},"ambiance.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9blirxjwgl-9yvnojcqa1.gz"},"Patterns":null},"ayu-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lqlpi28bhh-dd43fppwvz.gz"},"Patterns":null},"ayu-mirage.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4qd0ne4cr9-a4ee3bueob.gz"},"Patterns":null},"base16-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xy5t2x98xr-cq8t4djzuz.gz"},"Patterns":null},"base16-light.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"49anhq6kq6-ziy13k4iif.gz"},"Patterns":null},"bespin.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ljcwuuytmt-1qyqz11xfa.gz"},"Patterns":null},"blackboard.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"45hwqr2vt2-4ccbd1zrdm.gz"},"Patterns":null},"cobalt.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"li8txe1i60-0v5cd5rdhf.gz"},"Patterns":null},"colorforth.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"miiipii6kw-vuir5dz700.gz"},"Patterns":null},"darcula.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2pxrqimrzg-fv9whlje5q.gz"},"Patterns":null},"dracula.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aa9x50i6dr-xo2z5tozmt.gz"},"Patterns":null},"duotone-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vp1bfppvbf-58wl607x3p.gz"},"Patterns":null},"duotone-light.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0f4gd1j29w-7kyffsyypg.gz"},"Patterns":null},"eclipse.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9o6tpwuzzh-5l62aia5we.gz"},"Patterns":null},"elegant.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r8azi2ru1y-6fwswdw5l6.gz"},"Patterns":null},"erlang-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z2jk9e1ueh-8jo9361taf.gz"},"Patterns":null},"gruvbox-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pw1q5n64q4-imu3fe5rdy.gz"},"Patterns":null},"hopscotch.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m6pjoga5jt-t178kqmxn7.gz"},"Patterns":null},"icecoder.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"adokfvmntw-tfogroiy5r.gz"},"Patterns":null},"idea.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"olknqobh8v-jyw5ftnj5i.gz"},"Patterns":null},"isotope.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gpao9dnv8i-oh3u1coiha.gz"},"Patterns":null},"lesser-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jhnl3yce93-fvxbaz84uu.gz"},"Patterns":null},"liquibyte.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ukqasxfk2q-qvqmgqh86v.gz"},"Patterns":null},"lucario.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"54hnvzr4uf-klewjscsfn.gz"},"Patterns":null},"material-darker.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1qqk3l7rl3-0wcyq4itly.gz"},"Patterns":null},"material-ocean.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ty2b2la8fa-rkdlp8bx6k.gz"},"Patterns":null},"material-palenight.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pn3glyw2a1-q46avjbvno.gz"},"Patterns":null},"material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ldi5sajl8x-9gsl9tjhbp.gz"},"Patterns":null},"mbo.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sadzlsk9m6-4i04qskji3.gz"},"Patterns":null},"mdn-like.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l3io7fwp1n-meuwuw0dpy.gz"},"Patterns":null},"midnight.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yldkzajwrp-fiuimaf5rm.gz"},"Patterns":null},"monokai.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7tr8oqg5s0-ra5m14m9dx.gz"},"Patterns":null},"moxer.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"clx3pf3mbc-eae1d3rpx5.gz"},"Patterns":null},"neat.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wq31ywonu9-viy8353zvy.gz"},"Patterns":null},"neo.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"urw5luejj9-9ylcqnp8g3.gz"},"Patterns":null},"night.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nu4omk8s5j-ga0nnau9zo.gz"},"Patterns":null},"nord.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sh4e4275lk-pehb8bcddr.gz"},"Patterns":null},"oceanic-next.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1m1v7vkxrq-hkwcesbp3r.gz"},"Patterns":null},"panda-syntax.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"53ebbghntj-hii230ikto.gz"},"Patterns":null},"paraiso-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c5dags9f9o-y5latwsd68.gz"},"Patterns":null},"paraiso-light.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tiea7jqj69-e2gfxeu5b2.gz"},"Patterns":null},"pastel-on-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kiy8dl7oa1-9wc2howbif.gz"},"Patterns":null},"railscasts.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mat8jrmkde-soohcewvhk.gz"},"Patterns":null},"rubyblue.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ctwlp188k9-38xrlx2mpu.gz"},"Patterns":null},"seti.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kjthtae7tl-bbjv1549ml.gz"},"Patterns":null},"shadowfox.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"spcka0u401-b7238irrvt.gz"},"Patterns":null},"solarized.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4w39c1kt5h-pwhjyabihv.gz"},"Patterns":null},"ssms.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fgn2qk0tse-r1c9s66bet.gz"},"Patterns":null},"the-matrix.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fqjq87iajb-mtsgkzdoir.gz"},"Patterns":null},"tomorrow-night-bright.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qp6v6wlkct-stodfn3gne.gz"},"Patterns":null},"tomorrow-night-eighties.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nka3fczvn7-6njo497js4.gz"},"Patterns":null},"ttcn.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b7r2b0uxv9-x4dnirvmxt.gz"},"Patterns":null},"twilight.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4r4dhkvnk2-aes0620ue8.gz"},"Patterns":null},"vibrant-ink.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tnqj2j89zn-qq972dm9q2.gz"},"Patterns":null},"xq-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tn7irtiqmi-3sn0sbrt3e.gz"},"Patterns":null},"xq-light.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0f9bps9iv0-lngk9tjgyt.gz"},"Patterns":null},"yeti.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8tyta2vxmr-230fzv8i81.gz"},"Patterns":null},"yonce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o6wsz3y2mh-rnbzl47vdz.gz"},"Patterns":null},"zenburn.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"24t9rri1xe-nqlm1o0f9c.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"codemirror.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oi66hz7q0d-y79s91zboh.gz"},"Patterns":null},"codemirror.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tiy1vc207e-4bxx4k1bjh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"datatables-autofill":{"Children":{"css":{"Children":{"autoFill.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.css"},"Patterns":null},"autoFill.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/css/autoFill.bootstrap4.min.css"},"Patterns":null},"autoFill.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ue9u61hsi8-tkvymg8n82.gz"},"Patterns":null},"autoFill.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5ei0jld0nr-a801amfri5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"autoFill.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.js"},"Patterns":null},"autoFill.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/js/autoFill.bootstrap4.min.js"},"Patterns":null},"dataTables.autoFill.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/js/dataTables.autoFill.js"},"Patterns":null},"dataTables.autoFill.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-autofill/js/dataTables.autoFill.min.js"},"Patterns":null},"autoFill.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7xtgnhw6zk-gyh733u9uz.gz"},"Patterns":null},"autoFill.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mt3kzxj405-gz2qas7m2q.gz"},"Patterns":null},"dataTables.autoFill.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vkb6x9324c-xdtecvo9l0.gz"},"Patterns":null},"dataTables.autoFill.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rxevu4nggb-4yyvzks77v.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-bs4":{"Children":{"css":{"Children":{"dataTables.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.css"},"Patterns":null},"dataTables.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css"},"Patterns":null},"dataTables.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gdey8siiso-77l1t0edj0.gz"},"Patterns":null},"dataTables.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gm5tyif4aa-o2q6674kjs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.js"},"Patterns":null},"dataTables.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js"},"Patterns":null},"dataTables.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b9yqcefkr3-hh0eek2szb.gz"},"Patterns":null},"dataTables.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r5m030wqm9-q8lwh68o4z.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-buttons":{"Children":{"css":{"Children":{"buttons.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.css"},"Patterns":null},"buttons.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/css/buttons.bootstrap4.min.css"},"Patterns":null},"buttons.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cb92rv0rf1-bfhnpxxgus.gz"},"Patterns":null},"buttons.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7djqylopfx-41a4wrdrff.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"buttons.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.js"},"Patterns":null},"buttons.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.bootstrap4.min.js"},"Patterns":null},"buttons.colVis.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.colVis.js"},"Patterns":null},"buttons.colVis.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.colVis.min.js"},"Patterns":null},"buttons.flash.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.flash.js"},"Patterns":null},"buttons.flash.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.flash.min.js"},"Patterns":null},"buttons.html5.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.html5.js"},"Patterns":null},"buttons.html5.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.html5.min.js"},"Patterns":null},"buttons.print.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.print.js"},"Patterns":null},"buttons.print.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/buttons.print.min.js"},"Patterns":null},"dataTables.buttons.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/dataTables.buttons.js"},"Patterns":null},"dataTables.buttons.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-buttons/js/dataTables.buttons.min.js"},"Patterns":null},"buttons.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hz9dfs8lv8-jwzcem2x5w.gz"},"Patterns":null},"buttons.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gt0v9fqbo0-y584m2dz9u.gz"},"Patterns":null},"buttons.colVis.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l8xcza52ym-m12eixt24z.gz"},"Patterns":null},"buttons.colVis.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fpiajnu90p-dmpgbim1zl.gz"},"Patterns":null},"buttons.flash.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"35ve66a98f-7hxkwq9vyj.gz"},"Patterns":null},"buttons.flash.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cau43d5zzd-h6iwaiul7o.gz"},"Patterns":null},"buttons.html5.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8c3fd1ci3x-j5iy9p1oju.gz"},"Patterns":null},"buttons.html5.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g4aksbig2c-q6atm8wdn7.gz"},"Patterns":null},"buttons.print.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ar6b9nufm2-cfrveqd0wd.gz"},"Patterns":null},"buttons.print.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kpqb4nlbtd-wbdd9lqbww.gz"},"Patterns":null},"dataTables.buttons.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7b4f80jd14-b7coi7mr0e.gz"},"Patterns":null},"dataTables.buttons.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"77439mv5r6-lfaixuwb9n.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-colreorder":{"Children":{"css":{"Children":{"colReorder.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.css"},"Patterns":null},"colReorder.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css"},"Patterns":null},"colReorder.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gzsg2z1t1a-pyee0szohc.gz"},"Patterns":null},"colReorder.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1irr6flyv4-tenyg7zbz7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"colReorder.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.js"},"Patterns":null},"colReorder.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/js/colReorder.bootstrap4.min.js"},"Patterns":null},"dataTables.colReorder.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.js"},"Patterns":null},"dataTables.colReorder.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-colreorder/js/dataTables.colReorder.min.js"},"Patterns":null},"colReorder.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"48236e5zpj-qwe2hur73y.gz"},"Patterns":null},"colReorder.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w2lkoc1ke6-ix3nudw5ga.gz"},"Patterns":null},"dataTables.colReorder.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"la6lo0xlkl-40p4nwdv4t.gz"},"Patterns":null},"dataTables.colReorder.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"avspxl5bou-qkct1krwuu.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-fixedcolumns":{"Children":{"css":{"Children":{"fixedColumns.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.css"},"Patterns":null},"fixedColumns.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/css/fixedColumns.bootstrap4.min.css"},"Patterns":null},"fixedColumns.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dj9g3qpl82-ab98ewc3mi.gz"},"Patterns":null},"fixedColumns.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0eua1thfmt-4ou9rg0pg2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.fixedColumns.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.js"},"Patterns":null},"dataTables.fixedColumns.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/js/dataTables.fixedColumns.min.js"},"Patterns":null},"fixedColumns.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.js"},"Patterns":null},"fixedColumns.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedcolumns/js/fixedColumns.bootstrap4.min.js"},"Patterns":null},"dataTables.fixedColumns.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k7cw2kb6bm-jjq5g9t0r4.gz"},"Patterns":null},"dataTables.fixedColumns.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h34hysacd6-xqhvum8xa6.gz"},"Patterns":null},"fixedColumns.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hgsqnfkd6k-f5p23ltqyr.gz"},"Patterns":null},"fixedColumns.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c4g9zu2z25-kyfdkk34if.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-fixedheader":{"Children":{"css":{"Children":{"fixedHeader.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css"},"Patterns":null},"fixedHeader.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css"},"Patterns":null},"fixedHeader.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xvqjklkbip-zyfv9in9xn.gz"},"Patterns":null},"fixedHeader.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eho62nhq8y-lh5jr1es9u.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.fixedHeader.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.js"},"Patterns":null},"dataTables.fixedHeader.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/js/dataTables.fixedHeader.min.js"},"Patterns":null},"fixedHeader.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.js"},"Patterns":null},"fixedHeader.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-fixedheader/js/fixedHeader.bootstrap4.min.js"},"Patterns":null},"dataTables.fixedHeader.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ne9kaso4z3-f5qfkantkw.gz"},"Patterns":null},"dataTables.fixedHeader.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"86awdmiorz-y47kcwcyjs.gz"},"Patterns":null},"fixedHeader.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gug5f83h4e-po5900xf8t.gz"},"Patterns":null},"fixedHeader.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qxc8vesaqp-ebsaoobkdb.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-keytable":{"Children":{"css":{"Children":{"keyTable.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.css"},"Patterns":null},"keyTable.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css"},"Patterns":null},"keyTable.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w3jmj76qk7-67td4vaz2z.gz"},"Patterns":null},"keyTable.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s4bga0tu8r-8jao8yiky1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.keyTable.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/js/dataTables.keyTable.js"},"Patterns":null},"dataTables.keyTable.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/js/dataTables.keyTable.min.js"},"Patterns":null},"keyTable.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.js"},"Patterns":null},"keyTable.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-keytable/js/keyTable.bootstrap4.min.js"},"Patterns":null},"dataTables.keyTable.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g21ulwg5wf-zyokn2ge5t.gz"},"Patterns":null},"dataTables.keyTable.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q3qlorlk76-nlwv18y2rx.gz"},"Patterns":null},"keyTable.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ehp61q1frh-slst6dm7ok.gz"},"Patterns":null},"keyTable.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a3rewjdi36-a5oo774fir.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-responsive":{"Children":{"css":{"Children":{"responsive.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.css"},"Patterns":null},"responsive.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css"},"Patterns":null},"responsive.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h0tukeo7xw-gz6q36qjp2.gz"},"Patterns":null},"responsive.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sn2h46vpgs-1jtqv39mpy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.responsive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/js/dataTables.responsive.js"},"Patterns":null},"dataTables.responsive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js"},"Patterns":null},"responsive.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.js"},"Patterns":null},"responsive.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js"},"Patterns":null},"dataTables.responsive.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zvpy1layjv-b2jaa3m727.gz"},"Patterns":null},"dataTables.responsive.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3deadabcfe-m7eswhismn.gz"},"Patterns":null},"responsive.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mxdj8n2o3x-11tn5o4ii3.gz"},"Patterns":null},"responsive.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qbooj44ukk-h5fhho3ktf.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-rowgroup":{"Children":{"css":{"Children":{"rowGroup.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css"},"Patterns":null},"rowGroup.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css"},"Patterns":null},"rowGroup.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nxirqe4hqu-5bsaootd3o.gz"},"Patterns":null},"rowGroup.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a2w8vt5e46-2v0px8uppa.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.rowGroup.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.js"},"Patterns":null},"dataTables.rowGroup.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/js/dataTables.rowGroup.min.js"},"Patterns":null},"rowGroup.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.js"},"Patterns":null},"rowGroup.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowgroup/js/rowGroup.bootstrap4.min.js"},"Patterns":null},"dataTables.rowGroup.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kn470v7dhr-bfp4wiv8dd.gz"},"Patterns":null},"dataTables.rowGroup.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0d6wkhuyj6-z5fxa0wwfv.gz"},"Patterns":null},"rowGroup.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rpom06wqps-22esa9c2bt.gz"},"Patterns":null},"rowGroup.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x6sld7bydc-rtgj7ulp5k.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-rowreorder":{"Children":{"css":{"Children":{"rowReorder.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css"},"Patterns":null},"rowReorder.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css"},"Patterns":null},"rowReorder.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"llspphacwv-xcg2r80dyv.gz"},"Patterns":null},"rowReorder.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"n7odiai4uo-hr2solglra.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.rowReorder.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.js"},"Patterns":null},"dataTables.rowReorder.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/js/dataTables.rowReorder.min.js"},"Patterns":null},"rowReorder.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.js"},"Patterns":null},"rowReorder.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-rowreorder/js/rowReorder.bootstrap4.min.js"},"Patterns":null},"dataTables.rowReorder.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3lh8uo1kci-1vob95lca5.gz"},"Patterns":null},"dataTables.rowReorder.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hlko74xi82-zwr281qcei.gz"},"Patterns":null},"rowReorder.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ukmu22pkvi-usa3nsx0dj.gz"},"Patterns":null},"rowReorder.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z4olbaxh9l-74nkr8wpcz.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-scroller":{"Children":{"css":{"Children":{"scroller.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.css"},"Patterns":null},"scroller.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/css/scroller.bootstrap4.min.css"},"Patterns":null},"scroller.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ket6z8cv33-414pwliy3r.gz"},"Patterns":null},"scroller.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ffvt4bvepx-udmrmncdxw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.scroller.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/js/dataTables.scroller.js"},"Patterns":null},"dataTables.scroller.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/js/dataTables.scroller.min.js"},"Patterns":null},"scroller.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.js"},"Patterns":null},"scroller.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-scroller/js/scroller.bootstrap4.min.js"},"Patterns":null},"dataTables.scroller.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jloe063v8q-hxvzhxsnqp.gz"},"Patterns":null},"dataTables.scroller.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s2wsp6q7mc-3tyfs986w8.gz"},"Patterns":null},"scroller.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ea0jy6t9wf-h5e1e6npw4.gz"},"Patterns":null},"scroller.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"44sq6syf1a-l9nne2i5ti.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-searchbuilder":{"Children":{"css":{"Children":{"searchBuilder.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.css"},"Patterns":null},"searchBuilder.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/css/searchBuilder.bootstrap4.min.css"},"Patterns":null},"searchBuilder.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uy88hx0rc0-m0nbgzbbsg.gz"},"Patterns":null},"searchBuilder.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8otmm1zk8y-kdwtf91nzi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.searchBuilder.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.js"},"Patterns":null},"dataTables.searchBuilder.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/js/dataTables.searchBuilder.min.js"},"Patterns":null},"searchBuilder.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.js"},"Patterns":null},"searchBuilder.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchbuilder/js/searchBuilder.bootstrap4.min.js"},"Patterns":null},"dataTables.searchBuilder.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hftsldsf8a-h8cq4wsu4w.gz"},"Patterns":null},"dataTables.searchBuilder.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ngs5x9h34p-bce3mhc7fp.gz"},"Patterns":null},"searchBuilder.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gv54tfv9iv-4gnx12vpn8.gz"},"Patterns":null},"searchBuilder.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4un791of99-33biq5ngwn.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-searchpanes":{"Children":{"css":{"Children":{"searchPanes.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.css"},"Patterns":null},"searchPanes.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/css/searchPanes.bootstrap4.min.css"},"Patterns":null},"searchPanes.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3hk1vca1st-b6t4otomp0.gz"},"Patterns":null},"searchPanes.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4z0h3npqo3-sc5dmogg5e.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.searchPanes.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.js"},"Patterns":null},"dataTables.searchPanes.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/js/dataTables.searchPanes.min.js"},"Patterns":null},"searchPanes.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.js"},"Patterns":null},"searchPanes.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-searchpanes/js/searchPanes.bootstrap4.min.js"},"Patterns":null},"dataTables.searchPanes.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dywi9rc980-95md83km1c.gz"},"Patterns":null},"dataTables.searchPanes.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zlw9w7jw5b-bq34nb82fj.gz"},"Patterns":null},"searchPanes.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"27qypxdtkt-k4ewkq7q86.gz"},"Patterns":null},"searchPanes.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d4xrif39dl-avbv5p471y.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables-select":{"Children":{"css":{"Children":{"select.bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/css/select.bootstrap4.css"},"Patterns":null},"select.bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/css/select.bootstrap4.min.css"},"Patterns":null},"select.bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s8z6pvbl0l-e91nkrsv6h.gz"},"Patterns":null},"select.bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"quvgfnqdzc-75dlgiel77.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"dataTables.select.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/js/dataTables.select.js"},"Patterns":null},"dataTables.select.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/js/dataTables.select.min.js"},"Patterns":null},"select.bootstrap4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/js/select.bootstrap4.js"},"Patterns":null},"select.bootstrap4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables-select/js/select.bootstrap4.min.js"},"Patterns":null},"dataTables.select.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"416rbd65cw-6x203co8o0.gz"},"Patterns":null},"dataTables.select.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u56p5jmweu-9dm5y8xw7d.gz"},"Patterns":null},"select.bootstrap4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wbovpepqgc-gtktzbklc9.gz"},"Patterns":null},"select.bootstrap4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jw120g8x72-gplwu92cj5.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"datatables":{"Children":{"jquery.dataTables.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables/jquery.dataTables.js"},"Patterns":null},"jquery.dataTables.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/datatables/jquery.dataTables.min.js"},"Patterns":null},"jquery.dataTables.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gs4jeyv8pg-6mhq46pata.gz"},"Patterns":null},"jquery.dataTables.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0fkc4kspie-y042zq92cw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"daterangepicker":{"Children":{"daterangepicker.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/daterangepicker/daterangepicker.css"},"Patterns":null},"daterangepicker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/daterangepicker/daterangepicker.js"},"Patterns":null},"daterangepicker.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u4aeagwyyb-85vbs1dise.gz"},"Patterns":null},"daterangepicker.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5rznr7qc3e-49fhvdu0uw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"dropzone":{"Children":{"basic.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/basic.css"},"Patterns":null},"dropzone-amd-module.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/dropzone-amd-module.js"},"Patterns":null},"dropzone.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/dropzone.css"},"Patterns":null},"dropzone.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/dropzone.js"},"Patterns":null},"dropzone.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/dropzone.js.map"},"Patterns":null},"min":{"Children":{"basic.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/basic.css"},"Patterns":null},"basic.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/basic.min.css"},"Patterns":null},"dropzone-amd-module.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/dropzone-amd-module.min.js"},"Patterns":null},"dropzone.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/dropzone.css"},"Patterns":null},"dropzone.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/dropzone.min.css"},"Patterns":null},"dropzone.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/dropzone/min/dropzone.min.js"},"Patterns":null},"basic.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g1vmnf5ecr-7mizpc17xg.gz"},"Patterns":null},"basic.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rbenuvmol8-7mizpc17xg.gz"},"Patterns":null},"dropzone-amd-module.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yocm8cfwmm-wd9mj3g43m.gz"},"Patterns":null},"dropzone.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"88o1g9s181-rpo6apucdd.gz"},"Patterns":null},"dropzone.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pabsbefetn-rpo6apucdd.gz"},"Patterns":null},"dropzone.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8qsff1vvsp-wd9mj3g43m.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"basic.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s41xhaarrq-3zmhaj3z67.gz"},"Patterns":null},"dropzone-amd-module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tzihqsicmd-2jgxin5kcx.gz"},"Patterns":null},"dropzone.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pji0cwdafb-q9i2o2y2bd.gz"},"Patterns":null},"dropzone.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z7ec94c3mk-2jgxin5kcx.gz"},"Patterns":null},"dropzone.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"su0v9sgae4-t8svpuu6if.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ekko-lightbox":{"Children":{"ekko-lightbox.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ekko-lightbox/ekko-lightbox.css"},"Patterns":null},"ekko-lightbox.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ekko-lightbox/ekko-lightbox.js"},"Patterns":null},"ekko-lightbox.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ekko-lightbox/ekko-lightbox.js.map"},"Patterns":null},"ekko-lightbox.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js"},"Patterns":null},"ekko-lightbox.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ekko-lightbox/ekko-lightbox.min.js.map"},"Patterns":null},"ekko-lightbox.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wnkxbf3ccs-149a06eoyl.gz"},"Patterns":null},"ekko-lightbox.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mcff111gtn-cimb9ccda1.gz"},"Patterns":null},"ekko-lightbox.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ad24wh40z7-854ccv5m1u.gz"},"Patterns":null},"ekko-lightbox.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"amkn381upp-3wrp5udlce.gz"},"Patterns":null},"ekko-lightbox.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t9drcixcuo-b17k5vyw53.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fastclick":{"Children":{"fastclick.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fastclick/fastclick.js"},"Patterns":null},"fastclick.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4xca9cq5h3-ai6pjh167g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"filterizr":{"Children":{"filterizr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/filterizr/filterizr.min.js"},"Patterns":null},"jquery.filterizr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/filterizr/jquery.filterizr.min.js"},"Patterns":null},"vanilla.filterizr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/filterizr/vanilla.filterizr.min.js"},"Patterns":null},"filterizr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sgs1a1h3o7-ux88dou5p2.gz"},"Patterns":null},"jquery.filterizr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y9a2smf67q-wbhes8a006.gz"},"Patterns":null},"vanilla.filterizr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ockye6ug7q-rv3br3vnl3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"flag-icon-css":{"Children":{"css":{"Children":{"flag-icon.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/css/flag-icon.css"},"Patterns":null},"flag-icon.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/css/flag-icon.min.css"},"Patterns":null},"flag-icon.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hweiiz81b2-117lwhek57.gz"},"Patterns":null},"flag-icon.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3u7bmmm4hr-t0t8ha6ads.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"flags":{"Children":{"1x1":{"Children":{"ad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ad.svg"},"Patterns":null},"ae.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ae.svg"},"Patterns":null},"af.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/af.svg"},"Patterns":null},"ag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ag.svg"},"Patterns":null},"ai.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ai.svg"},"Patterns":null},"al.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/al.svg"},"Patterns":null},"am.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/am.svg"},"Patterns":null},"ao.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ao.svg"},"Patterns":null},"aq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/aq.svg"},"Patterns":null},"ar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ar.svg"},"Patterns":null},"as.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/as.svg"},"Patterns":null},"at.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/at.svg"},"Patterns":null},"au.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/au.svg"},"Patterns":null},"aw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/aw.svg"},"Patterns":null},"ax.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ax.svg"},"Patterns":null},"az.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/az.svg"},"Patterns":null},"ba.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ba.svg"},"Patterns":null},"bb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bb.svg"},"Patterns":null},"bd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bd.svg"},"Patterns":null},"be.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/be.svg"},"Patterns":null},"bf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bf.svg"},"Patterns":null},"bg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bg.svg"},"Patterns":null},"bh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bh.svg"},"Patterns":null},"bi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bi.svg"},"Patterns":null},"bj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bj.svg"},"Patterns":null},"bl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bl.svg"},"Patterns":null},"bm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bm.svg"},"Patterns":null},"bn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bn.svg"},"Patterns":null},"bo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bo.svg"},"Patterns":null},"bq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bq.svg"},"Patterns":null},"br.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/br.svg"},"Patterns":null},"bs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bs.svg"},"Patterns":null},"bt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bt.svg"},"Patterns":null},"bv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bv.svg"},"Patterns":null},"bw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bw.svg"},"Patterns":null},"by.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/by.svg"},"Patterns":null},"bz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/bz.svg"},"Patterns":null},"ca.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ca.svg"},"Patterns":null},"cc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cc.svg"},"Patterns":null},"cd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cd.svg"},"Patterns":null},"cf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cf.svg"},"Patterns":null},"cg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cg.svg"},"Patterns":null},"ch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ch.svg"},"Patterns":null},"ci.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ci.svg"},"Patterns":null},"ck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ck.svg"},"Patterns":null},"cl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cl.svg"},"Patterns":null},"cm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cm.svg"},"Patterns":null},"cn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cn.svg"},"Patterns":null},"co.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/co.svg"},"Patterns":null},"cr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cr.svg"},"Patterns":null},"cu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cu.svg"},"Patterns":null},"cv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cv.svg"},"Patterns":null},"cw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cw.svg"},"Patterns":null},"cx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cx.svg"},"Patterns":null},"cy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cy.svg"},"Patterns":null},"cz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/cz.svg"},"Patterns":null},"de.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/de.svg"},"Patterns":null},"dj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/dj.svg"},"Patterns":null},"dk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/dk.svg"},"Patterns":null},"dm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/dm.svg"},"Patterns":null},"do.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/do.svg"},"Patterns":null},"dz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/dz.svg"},"Patterns":null},"ec.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ec.svg"},"Patterns":null},"ee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ee.svg"},"Patterns":null},"eg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/eg.svg"},"Patterns":null},"eh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/eh.svg"},"Patterns":null},"er.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/er.svg"},"Patterns":null},"es-ca.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/es-ca.svg"},"Patterns":null},"es-ga.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/es-ga.svg"},"Patterns":null},"es.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/es.svg"},"Patterns":null},"et.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/et.svg"},"Patterns":null},"eu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/eu.svg"},"Patterns":null},"fi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fi.svg"},"Patterns":null},"fj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fj.svg"},"Patterns":null},"fk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fk.svg"},"Patterns":null},"fm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fm.svg"},"Patterns":null},"fo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fo.svg"},"Patterns":null},"fr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/fr.svg"},"Patterns":null},"ga.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ga.svg"},"Patterns":null},"gb-eng.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gb-eng.svg"},"Patterns":null},"gb-nir.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gb-nir.svg"},"Patterns":null},"gb-sct.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gb-sct.svg"},"Patterns":null},"gb-wls.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gb-wls.svg"},"Patterns":null},"gb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gb.svg"},"Patterns":null},"gd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gd.svg"},"Patterns":null},"ge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ge.svg"},"Patterns":null},"gf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gf.svg"},"Patterns":null},"gg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gg.svg"},"Patterns":null},"gh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gh.svg"},"Patterns":null},"gi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gi.svg"},"Patterns":null},"gl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gl.svg"},"Patterns":null},"gm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gm.svg"},"Patterns":null},"gn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gn.svg"},"Patterns":null},"gp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gp.svg"},"Patterns":null},"gq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gq.svg"},"Patterns":null},"gr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gr.svg"},"Patterns":null},"gs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gs.svg"},"Patterns":null},"gt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gt.svg"},"Patterns":null},"gu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gu.svg"},"Patterns":null},"gw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gw.svg"},"Patterns":null},"gy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/gy.svg"},"Patterns":null},"hk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/hk.svg"},"Patterns":null},"hm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/hm.svg"},"Patterns":null},"hn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/hn.svg"},"Patterns":null},"hr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/hr.svg"},"Patterns":null},"ht.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ht.svg"},"Patterns":null},"hu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/hu.svg"},"Patterns":null},"id.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/id.svg"},"Patterns":null},"ie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ie.svg"},"Patterns":null},"il.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/il.svg"},"Patterns":null},"im.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/im.svg"},"Patterns":null},"in.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/in.svg"},"Patterns":null},"io.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/io.svg"},"Patterns":null},"iq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/iq.svg"},"Patterns":null},"ir.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ir.svg"},"Patterns":null},"is.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/is.svg"},"Patterns":null},"it.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/it.svg"},"Patterns":null},"je.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/je.svg"},"Patterns":null},"jm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/jm.svg"},"Patterns":null},"jo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/jo.svg"},"Patterns":null},"jp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/jp.svg"},"Patterns":null},"ke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ke.svg"},"Patterns":null},"kg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kg.svg"},"Patterns":null},"kh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kh.svg"},"Patterns":null},"ki.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ki.svg"},"Patterns":null},"km.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/km.svg"},"Patterns":null},"kn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kn.svg"},"Patterns":null},"kp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kp.svg"},"Patterns":null},"kr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kr.svg"},"Patterns":null},"kw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kw.svg"},"Patterns":null},"ky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ky.svg"},"Patterns":null},"kz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/kz.svg"},"Patterns":null},"la.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/la.svg"},"Patterns":null},"lb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lb.svg"},"Patterns":null},"lc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lc.svg"},"Patterns":null},"li.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/li.svg"},"Patterns":null},"lk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lk.svg"},"Patterns":null},"lr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lr.svg"},"Patterns":null},"ls.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ls.svg"},"Patterns":null},"lt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lt.svg"},"Patterns":null},"lu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lu.svg"},"Patterns":null},"lv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/lv.svg"},"Patterns":null},"ly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ly.svg"},"Patterns":null},"ma.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ma.svg"},"Patterns":null},"mc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mc.svg"},"Patterns":null},"md.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/md.svg"},"Patterns":null},"me.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/me.svg"},"Patterns":null},"mf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mf.svg"},"Patterns":null},"mg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mg.svg"},"Patterns":null},"mh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mh.svg"},"Patterns":null},"mk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mk.svg"},"Patterns":null},"ml.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ml.svg"},"Patterns":null},"mm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mm.svg"},"Patterns":null},"mn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mn.svg"},"Patterns":null},"mo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mo.svg"},"Patterns":null},"mp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mp.svg"},"Patterns":null},"mq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mq.svg"},"Patterns":null},"mr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mr.svg"},"Patterns":null},"ms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ms.svg"},"Patterns":null},"mt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mt.svg"},"Patterns":null},"mu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mu.svg"},"Patterns":null},"mv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mv.svg"},"Patterns":null},"mw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mw.svg"},"Patterns":null},"mx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mx.svg"},"Patterns":null},"my.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/my.svg"},"Patterns":null},"mz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/mz.svg"},"Patterns":null},"na.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/na.svg"},"Patterns":null},"nc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nc.svg"},"Patterns":null},"ne.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ne.svg"},"Patterns":null},"nf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nf.svg"},"Patterns":null},"ng.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ng.svg"},"Patterns":null},"ni.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ni.svg"},"Patterns":null},"nl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nl.svg"},"Patterns":null},"no.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/no.svg"},"Patterns":null},"np.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/np.svg"},"Patterns":null},"nr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nr.svg"},"Patterns":null},"nu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nu.svg"},"Patterns":null},"nz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/nz.svg"},"Patterns":null},"om.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/om.svg"},"Patterns":null},"pa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pa.svg"},"Patterns":null},"pe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pe.svg"},"Patterns":null},"pf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pf.svg"},"Patterns":null},"pg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pg.svg"},"Patterns":null},"ph.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ph.svg"},"Patterns":null},"pk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pk.svg"},"Patterns":null},"pl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pl.svg"},"Patterns":null},"pm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pm.svg"},"Patterns":null},"pn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pn.svg"},"Patterns":null},"pr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pr.svg"},"Patterns":null},"ps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ps.svg"},"Patterns":null},"pt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pt.svg"},"Patterns":null},"pw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/pw.svg"},"Patterns":null},"py.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/py.svg"},"Patterns":null},"qa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/qa.svg"},"Patterns":null},"re.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/re.svg"},"Patterns":null},"ro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ro.svg"},"Patterns":null},"rs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/rs.svg"},"Patterns":null},"ru.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ru.svg"},"Patterns":null},"rw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/rw.svg"},"Patterns":null},"sa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sa.svg"},"Patterns":null},"sb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sb.svg"},"Patterns":null},"sc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sc.svg"},"Patterns":null},"sd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sd.svg"},"Patterns":null},"se.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/se.svg"},"Patterns":null},"sg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sg.svg"},"Patterns":null},"sh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sh.svg"},"Patterns":null},"si.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/si.svg"},"Patterns":null},"sj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sj.svg"},"Patterns":null},"sk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sk.svg"},"Patterns":null},"sl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sl.svg"},"Patterns":null},"sm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sm.svg"},"Patterns":null},"sn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sn.svg"},"Patterns":null},"so.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/so.svg"},"Patterns":null},"sr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sr.svg"},"Patterns":null},"ss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ss.svg"},"Patterns":null},"st.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/st.svg"},"Patterns":null},"sv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sv.svg"},"Patterns":null},"sx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sx.svg"},"Patterns":null},"sy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sy.svg"},"Patterns":null},"sz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/sz.svg"},"Patterns":null},"tc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tc.svg"},"Patterns":null},"td.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/td.svg"},"Patterns":null},"tf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tf.svg"},"Patterns":null},"tg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tg.svg"},"Patterns":null},"th.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/th.svg"},"Patterns":null},"tj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tj.svg"},"Patterns":null},"tk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tk.svg"},"Patterns":null},"tl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tl.svg"},"Patterns":null},"tm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tm.svg"},"Patterns":null},"tn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tn.svg"},"Patterns":null},"to.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/to.svg"},"Patterns":null},"tr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tr.svg"},"Patterns":null},"tt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tt.svg"},"Patterns":null},"tv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tv.svg"},"Patterns":null},"tw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tw.svg"},"Patterns":null},"tz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/tz.svg"},"Patterns":null},"ua.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ua.svg"},"Patterns":null},"ug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ug.svg"},"Patterns":null},"um.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/um.svg"},"Patterns":null},"un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/un.svg"},"Patterns":null},"us.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/us.svg"},"Patterns":null},"uy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/uy.svg"},"Patterns":null},"uz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/uz.svg"},"Patterns":null},"va.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/va.svg"},"Patterns":null},"vc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/vc.svg"},"Patterns":null},"ve.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ve.svg"},"Patterns":null},"vg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/vg.svg"},"Patterns":null},"vi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/vi.svg"},"Patterns":null},"vn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/vn.svg"},"Patterns":null},"vu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/vu.svg"},"Patterns":null},"wf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/wf.svg"},"Patterns":null},"ws.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ws.svg"},"Patterns":null},"xk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/xk.svg"},"Patterns":null},"ye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/ye.svg"},"Patterns":null},"yt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/yt.svg"},"Patterns":null},"za.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/za.svg"},"Patterns":null},"zm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/zm.svg"},"Patterns":null},"zw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/1x1/zw.svg"},"Patterns":null},"ad.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o5fb588a27-o11pkyrp7u.gz"},"Patterns":null},"ae.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kvd4dkerzi-bv6bvpq0gj.gz"},"Patterns":null},"af.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6c9tthevo6-ewlvn89r2j.gz"},"Patterns":null},"ag.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pqnmyh0zxb-0fi3w7gxml.gz"},"Patterns":null},"ai.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g9y5eviq3x-gwskadjs06.gz"},"Patterns":null},"al.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ghqb465l9i-mlkg39dmim.gz"},"Patterns":null},"am.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z1jkz9dyys-3qo5cct9w2.gz"},"Patterns":null},"ao.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rqsxvk8nrk-s1d4kvt949.gz"},"Patterns":null},"aq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kndhu1otuz-sh56ie60v8.gz"},"Patterns":null},"ar.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rjk0msofek-v9qqgrpwat.gz"},"Patterns":null},"as.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y1eer0cbrm-zw6sae53ei.gz"},"Patterns":null},"at.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nz5ejwghr6-75z6klj3gy.gz"},"Patterns":null},"au.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w60kj0iy5t-meuwx6gi00.gz"},"Patterns":null},"aw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"61qc2x0olg-qewauog46h.gz"},"Patterns":null},"ax.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t80lmjjdcu-rox1ebcdt8.gz"},"Patterns":null},"az.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tryri53y8x-v2upeibf0d.gz"},"Patterns":null},"ba.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pzn3a0u5x7-dumjs39d17.gz"},"Patterns":null},"bb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s8kwl7evwc-sj1u7n26qv.gz"},"Patterns":null},"bd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fqtrgzndhi-8wvcs3d299.gz"},"Patterns":null},"be.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ejt3v2qkey-upvz34mulp.gz"},"Patterns":null},"bf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"17bh2npbk3-wttxdblqtu.gz"},"Patterns":null},"bg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x8omhve2om-gpk8uysluo.gz"},"Patterns":null},"bh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f5q3a5eblh-jx1crcgqed.gz"},"Patterns":null},"bi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6o9pitdojj-vb9375k7dq.gz"},"Patterns":null},"bj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3qik6odppu-yg8jfj6mjf.gz"},"Patterns":null},"bl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ih18g7qh2o-u9ipalaa9l.gz"},"Patterns":null},"bm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z9vdo2wd5p-me5jc9svpr.gz"},"Patterns":null},"bn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"734g3ki7ty-41w6na0e1c.gz"},"Patterns":null},"bo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mlthmd963c-1i92fmke3w.gz"},"Patterns":null},"bq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pypat2lmhy-9fluf493cf.gz"},"Patterns":null},"br.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k1phv2zsx1-eqwxoozcot.gz"},"Patterns":null},"bs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y2fjpxsqvw-97butdfqyz.gz"},"Patterns":null},"bt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"40dtue6mc3-2haxoc2ys7.gz"},"Patterns":null},"bv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i05uhaqu9c-qkj3c8wwlc.gz"},"Patterns":null},"bw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7y7t9jo1q5-9jzodiy4a5.gz"},"Patterns":null},"by.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l4m6worwgs-hm9uxidyka.gz"},"Patterns":null},"bz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5sjvsyibsr-8ifwgb9ngx.gz"},"Patterns":null},"ca.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"05vwgyv3fg-rgmgci7hd1.gz"},"Patterns":null},"cc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m9rkvr413a-3gzqth923h.gz"},"Patterns":null},"cd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d3eowny89t-6olvnit7ix.gz"},"Patterns":null},"cf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cdjc1h1mqk-8r7uqjpz8u.gz"},"Patterns":null},"cg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qnzxozc4nw-w0m0xsx0ek.gz"},"Patterns":null},"ch.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v26t6q8xc2-jceml3mr0b.gz"},"Patterns":null},"ci.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uasywey9mc-s58woih20x.gz"},"Patterns":null},"ck.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rd1hd5r76y-8qmrzscz66.gz"},"Patterns":null},"cl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9ca5ro85t3-fn6z8rh9nq.gz"},"Patterns":null},"cm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rblltm3590-61bvqf725k.gz"},"Patterns":null},"cn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v184i37600-ksr3a0pzyx.gz"},"Patterns":null},"co.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0u02pjjhbs-2hss1hi74n.gz"},"Patterns":null},"cr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ck1pjz4dri-hniwps0t55.gz"},"Patterns":null},"cu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"12de2r1v5o-dglhqa7wto.gz"},"Patterns":null},"cv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2s43zvy3dg-cf77v5g02h.gz"},"Patterns":null},"cw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"empoigdib6-et2g9b00sr.gz"},"Patterns":null},"cx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vrtyavfydz-5ddvmq7xow.gz"},"Patterns":null},"cy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r5jochzmzz-woke2z4sjl.gz"},"Patterns":null},"cz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u54ma3q12j-70r309crpv.gz"},"Patterns":null},"de.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oa4prnrepj-wa3i4ku7hj.gz"},"Patterns":null},"dj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"48f8fw12z6-z8l9u473fl.gz"},"Patterns":null},"dk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pzv5rr0vrs-50jt2n3myd.gz"},"Patterns":null},"dm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"25ph8z0f97-i793kwfp1r.gz"},"Patterns":null},"do.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9zjci92pz6-cqjo3v2r9e.gz"},"Patterns":null},"dz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6csl5crk4z-xgjptvknhe.gz"},"Patterns":null},"ec.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3bnig0fn2d-1ijacn6b84.gz"},"Patterns":null},"ee.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yowcpzl6l9-11c2kdq278.gz"},"Patterns":null},"eg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ljxcuk6dc4-mqblsrxcwn.gz"},"Patterns":null},"eh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ska9bulr3u-qfhd528vl7.gz"},"Patterns":null},"er.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ms1zzacn3c-j33guwfkso.gz"},"Patterns":null},"es-ca.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uw87agzwpa-hayqg9vwo0.gz"},"Patterns":null},"es-ga.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pgcro0h89a-1y7ay23w4j.gz"},"Patterns":null},"es.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w61zzfr8be-3hh674ist8.gz"},"Patterns":null},"et.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j0np7kt7vp-iz2grt7x8m.gz"},"Patterns":null},"eu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"boabu16f87-8p2b2lrfor.gz"},"Patterns":null},"fi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7woyfz4hb8-p2gskjh2ou.gz"},"Patterns":null},"fj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e3m68tfexm-911itkggbh.gz"},"Patterns":null},"fk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w0zt20sfp2-qhmpgfay6f.gz"},"Patterns":null},"fm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9bpu2idpi9-i3zgqmk9xc.gz"},"Patterns":null},"fo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7505vkf0n8-ypyckre3gn.gz"},"Patterns":null},"fr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jyp535x639-652bxvp8jl.gz"},"Patterns":null},"ga.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ycpfxf00cp-rjfguzuagz.gz"},"Patterns":null},"gb-eng.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rilh7mfk14-jiuxnbh50t.gz"},"Patterns":null},"gb-nir.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qmwxdxsg3p-noo1lhnvhy.gz"},"Patterns":null},"gb-sct.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gu7fdt7zzy-rnu4mt80ne.gz"},"Patterns":null},"gb-wls.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3u5nqb628f-iw2l51et39.gz"},"Patterns":null},"gb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"twz647sjs0-hpl0z0f43z.gz"},"Patterns":null},"gd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ox5j74xpfl-2ih12wkq0z.gz"},"Patterns":null},"ge.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"28c3wogdar-qtl9onwq18.gz"},"Patterns":null},"gf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m47h5yufvl-li4fg170h6.gz"},"Patterns":null},"gg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r0sx5ytqhy-pvm19qj17y.gz"},"Patterns":null},"gh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ne6navvrnh-kqbvmtk4r3.gz"},"Patterns":null},"gi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xs2dbd1szf-w2xycky6k0.gz"},"Patterns":null},"gl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"um48nrv00k-zajmib3mxl.gz"},"Patterns":null},"gm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4le65vmnbp-dfhj8g7bzs.gz"},"Patterns":null},"gn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9qr59bymew-1bmf10ahub.gz"},"Patterns":null},"gp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wufj8zstf9-9dxxwgk9d4.gz"},"Patterns":null},"gq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tbpze4yqlu-ypwqofabbd.gz"},"Patterns":null},"gr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9e4f731oy3-wax4ryfjj5.gz"},"Patterns":null},"gs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p1b87bh79f-abm9gyc7cg.gz"},"Patterns":null},"gt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"32p763uq5c-c7mk0wrmcc.gz"},"Patterns":null},"gu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"205n8ntjsz-e3r4ytf7qv.gz"},"Patterns":null},"gw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ii5g66pad6-115k7u9uz2.gz"},"Patterns":null},"gy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x32oi55sgb-vs5eijr6kj.gz"},"Patterns":null},"hk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9aqebdlrdt-om9mlw0rl1.gz"},"Patterns":null},"hm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e8xgl57t1c-499eqjfnax.gz"},"Patterns":null},"hn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"unkf8ddhs0-5jcow7venx.gz"},"Patterns":null},"hr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oiyqdjxaeu-pz5ubt13qy.gz"},"Patterns":null},"ht.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4w0k82bhxq-g8p0ct0gke.gz"},"Patterns":null},"hu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jx4qn03idi-es4lu6h2nu.gz"},"Patterns":null},"id.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rym4qqb4i5-lo884oy4e0.gz"},"Patterns":null},"ie.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"liv2fawv7d-shccssn5b9.gz"},"Patterns":null},"il.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"n2kq3jik1r-475oxpfkh3.gz"},"Patterns":null},"im.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gh5lvibxhp-v11ioh4lc2.gz"},"Patterns":null},"in.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dbo3gq3n5k-97mz5mdxd1.gz"},"Patterns":null},"io.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wwjwx5fnm7-oyk0w9kxpc.gz"},"Patterns":null},"iq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"czo4qlnlpf-8o01ck91ih.gz"},"Patterns":null},"ir.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"54wzo59f5s-j9vuasd1kh.gz"},"Patterns":null},"is.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"87ttx3wa8m-il3jmwd069.gz"},"Patterns":null},"it.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bmqhzmfpo6-z9zci2r643.gz"},"Patterns":null},"je.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hxuy1lb6c2-gz2cm7kfg7.gz"},"Patterns":null},"jm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5sghr7tvlm-va60i3gdml.gz"},"Patterns":null},"jo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9gddgmzpvx-7lpke6b7mc.gz"},"Patterns":null},"jp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xrppf18hj4-q12nrtkjp1.gz"},"Patterns":null},"ke.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"indsadqvgt-pm6722ewki.gz"},"Patterns":null},"kg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kzoovigsk9-yv4sem8rtn.gz"},"Patterns":null},"kh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p5hodeg4cr-sa4529qt63.gz"},"Patterns":null},"ki.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"auo8zwxl7y-8toyl1z5wk.gz"},"Patterns":null},"km.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vxby4gi4hq-7zbu2lmitz.gz"},"Patterns":null},"kn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3x8h9kyki3-kdo3cw8znr.gz"},"Patterns":null},"kp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y3v6mqqicx-6e978ojqzv.gz"},"Patterns":null},"kr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"78ztcfiq6s-jfe74kszes.gz"},"Patterns":null},"kw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6bqw523k93-g0u7lc1flq.gz"},"Patterns":null},"ky.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8aznnqk87-uyuno3r9b8.gz"},"Patterns":null},"kz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8nl6jtui7g-r2eg9965iz.gz"},"Patterns":null},"la.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6cus9txt68-lbpzv6rwga.gz"},"Patterns":null},"lb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"opqfomlmwi-255sb1opub.gz"},"Patterns":null},"lc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2eds51ojfi-37enrekawx.gz"},"Patterns":null},"li.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uuvxcoted9-i57cg8xjf4.gz"},"Patterns":null},"lk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zcsjfmrw32-2kz6abhgte.gz"},"Patterns":null},"lr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hb1yi2qrus-zez5v2p8yt.gz"},"Patterns":null},"ls.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wb7jhki98q-1y3n566yqm.gz"},"Patterns":null},"lt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wdcdbtajp5-eufhk5i45f.gz"},"Patterns":null},"lu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yp6ctdtoyi-7f2hioz5ko.gz"},"Patterns":null},"lv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9x097jg962-y5icjz2p24.gz"},"Patterns":null},"ly.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cfaforif42-64jodg35mm.gz"},"Patterns":null},"ma.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gitnuy8syt-mepah5t7m0.gz"},"Patterns":null},"mc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"96ha5gz0yf-jd9a5p374i.gz"},"Patterns":null},"md.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zpvm9smfby-w8pkoz4wqk.gz"},"Patterns":null},"me.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"29ox0pg9q0-8cmsiu1h2n.gz"},"Patterns":null},"mf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r9cz14ysdu-azosfuphf7.gz"},"Patterns":null},"mg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rdwvs9uobt-fw956rfjow.gz"},"Patterns":null},"mh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f4j3imh5sl-49qeknhy7x.gz"},"Patterns":null},"mk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"llyhfxvhoi-tsclsowo1x.gz"},"Patterns":null},"ml.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y85ckr7zcz-ho8zr0sr7u.gz"},"Patterns":null},"mm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"droekjhr9r-1vaq6136kd.gz"},"Patterns":null},"mn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j3nvcd3a58-d8i673db7t.gz"},"Patterns":null},"mo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3l8mt938jv-nktjcaq27e.gz"},"Patterns":null},"mp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"37la9e0hyx-fs6qhzzf7y.gz"},"Patterns":null},"mq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cs9frap44a-ml5zq05c6z.gz"},"Patterns":null},"mr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8mrq3tfxpm-34d4dzxx5s.gz"},"Patterns":null},"ms.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aklyqffcn2-6qtva9k9l9.gz"},"Patterns":null},"mt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qvf1sz7vhx-zhcoinjr9d.gz"},"Patterns":null},"mu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5t2iju4mf2-r1g0bnmdlp.gz"},"Patterns":null},"mv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"38r2hrr3ab-c7st5thhwk.gz"},"Patterns":null},"mw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jggkkyeyw6-ra5ksjw333.gz"},"Patterns":null},"mx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qw31bf6jrl-bet10w9edh.gz"},"Patterns":null},"my.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"28je1986rf-mbgmllq8bd.gz"},"Patterns":null},"mz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qvlm9jn1z2-s12c5mshwz.gz"},"Patterns":null},"na.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q0ivnfqnlu-znaybnjkl2.gz"},"Patterns":null},"nc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oy5cq4l7ov-bgbwz7ecpa.gz"},"Patterns":null},"ne.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s2c9j13io7-q6p9uucaxt.gz"},"Patterns":null},"nf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nqdyp1q05n-uar8rcw0z4.gz"},"Patterns":null},"ng.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m1z6jgmduq-dzufxv4lcz.gz"},"Patterns":null},"ni.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2komcal16j-zpsrf9d8vs.gz"},"Patterns":null},"nl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pabf15og7d-500c6k0n07.gz"},"Patterns":null},"no.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ickz5gluwy-c6ukfseamh.gz"},"Patterns":null},"np.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ek8mqpglzm-occkipe36n.gz"},"Patterns":null},"nr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ydvw7yw474-d0hbdhmgx7.gz"},"Patterns":null},"nu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mt1ybtrx1r-fac9biq3d4.gz"},"Patterns":null},"nz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yvvsqsgn51-3u9k60mdyo.gz"},"Patterns":null},"om.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lgpbfala9z-vz9weggzoa.gz"},"Patterns":null},"pa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"14r3upzj9s-o492cmcnhb.gz"},"Patterns":null},"pe.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xzs4i2tgzc-6v2ate50r9.gz"},"Patterns":null},"pf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kcrn7esjuk-pzlcxj6ixx.gz"},"Patterns":null},"pg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"690vn9iw50-ab5cqhxhza.gz"},"Patterns":null},"ph.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jbl0yc1z4c-efwqjux015.gz"},"Patterns":null},"pk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1pgnh3ezfj-5abnvdgzkh.gz"},"Patterns":null},"pl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"056jdojv49-rj0vdbqxuu.gz"},"Patterns":null},"pm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sfpguo1dcm-jyle6nnkbr.gz"},"Patterns":null},"pn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7b89fgy7ri-bi669gzj30.gz"},"Patterns":null},"pr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"11nqy6ihyj-2fo3pgjbc9.gz"},"Patterns":null},"ps.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6i6it1aeo5-s0i7d798qp.gz"},"Patterns":null},"pt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"publfs1sa6-pxmviwf5ql.gz"},"Patterns":null},"pw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8yvlms7yfj-kcizvxe8y7.gz"},"Patterns":null},"py.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"59qj0rdyyx-3dou65ou1a.gz"},"Patterns":null},"qa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9eu7igrymr-qxekhrbkyf.gz"},"Patterns":null},"re.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dsb26xa3wv-13bwur73c3.gz"},"Patterns":null},"ro.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1okkdug5gg-sfcje6am3y.gz"},"Patterns":null},"rs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"txc5v65zks-qn2fuk7srj.gz"},"Patterns":null},"ru.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bdu245xbpn-rvu12mksbo.gz"},"Patterns":null},"rw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0ex2khx7lg-4ny1s83hxd.gz"},"Patterns":null},"sa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1zs5zfz0ib-kw7sw09bwh.gz"},"Patterns":null},"sb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rcc03no3fn-2m2572nb78.gz"},"Patterns":null},"sc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"29kouldj39-qc0pp0wyye.gz"},"Patterns":null},"sd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yj26xdwg6g-ks5hi7z4k1.gz"},"Patterns":null},"se.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cgsqbl0n1c-eafxwssa9j.gz"},"Patterns":null},"sg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fzywrlu3vw-vic11eidxp.gz"},"Patterns":null},"sh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"789xt2szv6-kxxswd9w27.gz"},"Patterns":null},"si.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gyj8ltq5jj-jzcetiymxm.gz"},"Patterns":null},"sj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i1jecard3v-zshyus46in.gz"},"Patterns":null},"sk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m5gnme280b-74ona0yjlj.gz"},"Patterns":null},"sl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mox0quo92j-cs3s1szk1t.gz"},"Patterns":null},"sm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mf81z8pk56-9rf6w21861.gz"},"Patterns":null},"sn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j5gy9z3ut6-gj7ow9irk6.gz"},"Patterns":null},"so.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"go4qwbcnfy-jwipu5h8bi.gz"},"Patterns":null},"sr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jci2ml9owi-59ksox06iy.gz"},"Patterns":null},"ss.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"68qgtitvou-kv4ap4mmvd.gz"},"Patterns":null},"st.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugfu2u8wdn-jx2zk6xf3z.gz"},"Patterns":null},"sv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hvi71lpl29-vjvvwglo00.gz"},"Patterns":null},"sx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wvwxklvnle-eq1c4a8l2r.gz"},"Patterns":null},"sy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d2li2ig9jl-ogfs6kdena.gz"},"Patterns":null},"sz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q5kops14m2-kg4jrcmxel.gz"},"Patterns":null},"tc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hlnvzlyyik-yb3i3n4i74.gz"},"Patterns":null},"td.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x7vqrh8j30-n1m5t6hwfy.gz"},"Patterns":null},"tf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zu418b49u0-nt54lur4eu.gz"},"Patterns":null},"tg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eg2vus5e4d-622dyh5q39.gz"},"Patterns":null},"th.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1d2yak2xjz-pksyldkb88.gz"},"Patterns":null},"tj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o7qcdukfhi-5pjvn4vwrh.gz"},"Patterns":null},"tk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1itsvzreq4-v3og9cmrof.gz"},"Patterns":null},"tl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mhugwql4gz-conjpg4szu.gz"},"Patterns":null},"tm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fzfqkex882-wup7qb49pa.gz"},"Patterns":null},"tn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"931d18hn2f-dq2sqdsvp7.gz"},"Patterns":null},"to.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fkrppaks35-5eiq5i5mrm.gz"},"Patterns":null},"tr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3nivc1fpu1-aftjypwqea.gz"},"Patterns":null},"tt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jx6vnen50b-gs27r4gs4g.gz"},"Patterns":null},"tv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xinjm4j3t3-rlgkgl578t.gz"},"Patterns":null},"tw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ffxn47rs52-9c50fwt8fz.gz"},"Patterns":null},"tz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lc4lhkqsad-z13ojp4aop.gz"},"Patterns":null},"ua.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4ywa2kbz85-akv4avn4sq.gz"},"Patterns":null},"ug.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lk7txcgmnt-kaj6pa7ml5.gz"},"Patterns":null},"um.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b9w64wuyge-dpktncmwti.gz"},"Patterns":null},"un.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9e5ijpdvxc-mvrldw2628.gz"},"Patterns":null},"us.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bz7mdt18le-sh3evydvwz.gz"},"Patterns":null},"uy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5uoxudlj42-dzatvq03yl.gz"},"Patterns":null},"uz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s043p7qv5g-tj8sut6gjq.gz"},"Patterns":null},"va.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u3xo792xpy-u8zih56yp5.gz"},"Patterns":null},"vc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tk7vstu31w-rt00ruzkvc.gz"},"Patterns":null},"ve.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3nqna1olfh-5jahkugh36.gz"},"Patterns":null},"vg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r7lqwhx6l0-ca4q0njjep.gz"},"Patterns":null},"vi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"khhtamje8j-l23aodampd.gz"},"Patterns":null},"vn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iqucqv2yd2-ebz3ry75e5.gz"},"Patterns":null},"vu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cm6j5t3ix7-cp872jp9wy.gz"},"Patterns":null},"wf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s4r85h3e9h-qwtzlywd0n.gz"},"Patterns":null},"ws.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"38dtndro2c-9vgycz45nb.gz"},"Patterns":null},"xk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uglgqhc2j8-aphlxyxezm.gz"},"Patterns":null},"ye.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f9fhubtve3-hz1j17d0np.gz"},"Patterns":null},"yt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s7tc2cvhyt-6ugfp1b5di.gz"},"Patterns":null},"za.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0uweaxis1x-guhts609dt.gz"},"Patterns":null},"zm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l08v7g86un-24qgybbqw5.gz"},"Patterns":null},"zw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3pu4w11knz-36maaehuow.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"4x3":{"Children":{"ad.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ad.svg"},"Patterns":null},"ae.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ae.svg"},"Patterns":null},"af.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/af.svg"},"Patterns":null},"ag.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ag.svg"},"Patterns":null},"ai.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ai.svg"},"Patterns":null},"al.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/al.svg"},"Patterns":null},"am.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/am.svg"},"Patterns":null},"ao.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ao.svg"},"Patterns":null},"aq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/aq.svg"},"Patterns":null},"ar.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ar.svg"},"Patterns":null},"as.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/as.svg"},"Patterns":null},"at.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/at.svg"},"Patterns":null},"au.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/au.svg"},"Patterns":null},"aw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/aw.svg"},"Patterns":null},"ax.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ax.svg"},"Patterns":null},"az.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/az.svg"},"Patterns":null},"ba.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ba.svg"},"Patterns":null},"bb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bb.svg"},"Patterns":null},"bd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bd.svg"},"Patterns":null},"be.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/be.svg"},"Patterns":null},"bf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bf.svg"},"Patterns":null},"bg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bg.svg"},"Patterns":null},"bh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bh.svg"},"Patterns":null},"bi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bi.svg"},"Patterns":null},"bj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bj.svg"},"Patterns":null},"bl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bl.svg"},"Patterns":null},"bm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bm.svg"},"Patterns":null},"bn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bn.svg"},"Patterns":null},"bo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bo.svg"},"Patterns":null},"bq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bq.svg"},"Patterns":null},"br.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/br.svg"},"Patterns":null},"bs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bs.svg"},"Patterns":null},"bt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bt.svg"},"Patterns":null},"bv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bv.svg"},"Patterns":null},"bw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bw.svg"},"Patterns":null},"by.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/by.svg"},"Patterns":null},"bz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/bz.svg"},"Patterns":null},"ca.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ca.svg"},"Patterns":null},"cc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cc.svg"},"Patterns":null},"cd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cd.svg"},"Patterns":null},"cf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cf.svg"},"Patterns":null},"cg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cg.svg"},"Patterns":null},"ch.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ch.svg"},"Patterns":null},"ci.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ci.svg"},"Patterns":null},"ck.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ck.svg"},"Patterns":null},"cl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cl.svg"},"Patterns":null},"cm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cm.svg"},"Patterns":null},"cn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cn.svg"},"Patterns":null},"co.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/co.svg"},"Patterns":null},"cr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cr.svg"},"Patterns":null},"cu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cu.svg"},"Patterns":null},"cv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cv.svg"},"Patterns":null},"cw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cw.svg"},"Patterns":null},"cx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cx.svg"},"Patterns":null},"cy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cy.svg"},"Patterns":null},"cz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/cz.svg"},"Patterns":null},"de.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/de.svg"},"Patterns":null},"dj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/dj.svg"},"Patterns":null},"dk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/dk.svg"},"Patterns":null},"dm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/dm.svg"},"Patterns":null},"do.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/do.svg"},"Patterns":null},"dz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/dz.svg"},"Patterns":null},"ec.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ec.svg"},"Patterns":null},"ee.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ee.svg"},"Patterns":null},"eg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/eg.svg"},"Patterns":null},"eh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/eh.svg"},"Patterns":null},"er.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/er.svg"},"Patterns":null},"es-ca.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/es-ca.svg"},"Patterns":null},"es-ga.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/es-ga.svg"},"Patterns":null},"es.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/es.svg"},"Patterns":null},"et.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/et.svg"},"Patterns":null},"eu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/eu.svg"},"Patterns":null},"fi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fi.svg"},"Patterns":null},"fj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fj.svg"},"Patterns":null},"fk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fk.svg"},"Patterns":null},"fm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fm.svg"},"Patterns":null},"fo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fo.svg"},"Patterns":null},"fr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/fr.svg"},"Patterns":null},"ga.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ga.svg"},"Patterns":null},"gb-eng.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gb-eng.svg"},"Patterns":null},"gb-nir.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gb-nir.svg"},"Patterns":null},"gb-sct.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gb-sct.svg"},"Patterns":null},"gb-wls.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gb-wls.svg"},"Patterns":null},"gb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gb.svg"},"Patterns":null},"gd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gd.svg"},"Patterns":null},"ge.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ge.svg"},"Patterns":null},"gf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gf.svg"},"Patterns":null},"gg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gg.svg"},"Patterns":null},"gh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gh.svg"},"Patterns":null},"gi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gi.svg"},"Patterns":null},"gl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gl.svg"},"Patterns":null},"gm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gm.svg"},"Patterns":null},"gn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gn.svg"},"Patterns":null},"gp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gp.svg"},"Patterns":null},"gq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gq.svg"},"Patterns":null},"gr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gr.svg"},"Patterns":null},"gs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gs.svg"},"Patterns":null},"gt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gt.svg"},"Patterns":null},"gu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gu.svg"},"Patterns":null},"gw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gw.svg"},"Patterns":null},"gy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/gy.svg"},"Patterns":null},"hk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/hk.svg"},"Patterns":null},"hm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/hm.svg"},"Patterns":null},"hn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/hn.svg"},"Patterns":null},"hr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/hr.svg"},"Patterns":null},"ht.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ht.svg"},"Patterns":null},"hu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/hu.svg"},"Patterns":null},"id.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/id.svg"},"Patterns":null},"ie.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ie.svg"},"Patterns":null},"il.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/il.svg"},"Patterns":null},"im.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/im.svg"},"Patterns":null},"in.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/in.svg"},"Patterns":null},"io.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/io.svg"},"Patterns":null},"iq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/iq.svg"},"Patterns":null},"ir.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ir.svg"},"Patterns":null},"is.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/is.svg"},"Patterns":null},"it.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/it.svg"},"Patterns":null},"je.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/je.svg"},"Patterns":null},"jm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/jm.svg"},"Patterns":null},"jo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/jo.svg"},"Patterns":null},"jp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/jp.svg"},"Patterns":null},"ke.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ke.svg"},"Patterns":null},"kg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kg.svg"},"Patterns":null},"kh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kh.svg"},"Patterns":null},"ki.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ki.svg"},"Patterns":null},"km.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/km.svg"},"Patterns":null},"kn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kn.svg"},"Patterns":null},"kp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kp.svg"},"Patterns":null},"kr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kr.svg"},"Patterns":null},"kw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kw.svg"},"Patterns":null},"ky.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ky.svg"},"Patterns":null},"kz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/kz.svg"},"Patterns":null},"la.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/la.svg"},"Patterns":null},"lb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lb.svg"},"Patterns":null},"lc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lc.svg"},"Patterns":null},"li.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/li.svg"},"Patterns":null},"lk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lk.svg"},"Patterns":null},"lr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lr.svg"},"Patterns":null},"ls.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ls.svg"},"Patterns":null},"lt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lt.svg"},"Patterns":null},"lu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lu.svg"},"Patterns":null},"lv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/lv.svg"},"Patterns":null},"ly.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ly.svg"},"Patterns":null},"ma.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ma.svg"},"Patterns":null},"mc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mc.svg"},"Patterns":null},"md.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/md.svg"},"Patterns":null},"me.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/me.svg"},"Patterns":null},"mf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mf.svg"},"Patterns":null},"mg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mg.svg"},"Patterns":null},"mh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mh.svg"},"Patterns":null},"mk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mk.svg"},"Patterns":null},"ml.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ml.svg"},"Patterns":null},"mm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mm.svg"},"Patterns":null},"mn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mn.svg"},"Patterns":null},"mo.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mo.svg"},"Patterns":null},"mp.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mp.svg"},"Patterns":null},"mq.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mq.svg"},"Patterns":null},"mr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mr.svg"},"Patterns":null},"ms.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ms.svg"},"Patterns":null},"mt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mt.svg"},"Patterns":null},"mu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mu.svg"},"Patterns":null},"mv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mv.svg"},"Patterns":null},"mw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mw.svg"},"Patterns":null},"mx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mx.svg"},"Patterns":null},"my.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/my.svg"},"Patterns":null},"mz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/mz.svg"},"Patterns":null},"na.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/na.svg"},"Patterns":null},"nc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nc.svg"},"Patterns":null},"ne.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ne.svg"},"Patterns":null},"nf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nf.svg"},"Patterns":null},"ng.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ng.svg"},"Patterns":null},"ni.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ni.svg"},"Patterns":null},"nl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nl.svg"},"Patterns":null},"no.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/no.svg"},"Patterns":null},"np.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/np.svg"},"Patterns":null},"nr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nr.svg"},"Patterns":null},"nu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nu.svg"},"Patterns":null},"nz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/nz.svg"},"Patterns":null},"om.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/om.svg"},"Patterns":null},"pa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pa.svg"},"Patterns":null},"pe.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pe.svg"},"Patterns":null},"pf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pf.svg"},"Patterns":null},"pg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pg.svg"},"Patterns":null},"ph.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ph.svg"},"Patterns":null},"pk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pk.svg"},"Patterns":null},"pl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pl.svg"},"Patterns":null},"pm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pm.svg"},"Patterns":null},"pn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pn.svg"},"Patterns":null},"pr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pr.svg"},"Patterns":null},"ps.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ps.svg"},"Patterns":null},"pt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pt.svg"},"Patterns":null},"pw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/pw.svg"},"Patterns":null},"py.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/py.svg"},"Patterns":null},"qa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/qa.svg"},"Patterns":null},"re.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/re.svg"},"Patterns":null},"ro.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ro.svg"},"Patterns":null},"rs.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/rs.svg"},"Patterns":null},"ru.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ru.svg"},"Patterns":null},"rw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/rw.svg"},"Patterns":null},"sa.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sa.svg"},"Patterns":null},"sb.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sb.svg"},"Patterns":null},"sc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sc.svg"},"Patterns":null},"sd.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sd.svg"},"Patterns":null},"se.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/se.svg"},"Patterns":null},"sg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sg.svg"},"Patterns":null},"sh.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sh.svg"},"Patterns":null},"si.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/si.svg"},"Patterns":null},"sj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sj.svg"},"Patterns":null},"sk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sk.svg"},"Patterns":null},"sl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sl.svg"},"Patterns":null},"sm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sm.svg"},"Patterns":null},"sn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sn.svg"},"Patterns":null},"so.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/so.svg"},"Patterns":null},"sr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sr.svg"},"Patterns":null},"ss.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ss.svg"},"Patterns":null},"st.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/st.svg"},"Patterns":null},"sv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sv.svg"},"Patterns":null},"sx.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sx.svg"},"Patterns":null},"sy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sy.svg"},"Patterns":null},"sz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/sz.svg"},"Patterns":null},"tc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tc.svg"},"Patterns":null},"td.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/td.svg"},"Patterns":null},"tf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tf.svg"},"Patterns":null},"tg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tg.svg"},"Patterns":null},"th.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/th.svg"},"Patterns":null},"tj.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tj.svg"},"Patterns":null},"tk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tk.svg"},"Patterns":null},"tl.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tl.svg"},"Patterns":null},"tm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tm.svg"},"Patterns":null},"tn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tn.svg"},"Patterns":null},"to.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/to.svg"},"Patterns":null},"tr.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tr.svg"},"Patterns":null},"tt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tt.svg"},"Patterns":null},"tv.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tv.svg"},"Patterns":null},"tw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tw.svg"},"Patterns":null},"tz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/tz.svg"},"Patterns":null},"ua.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ua.svg"},"Patterns":null},"ug.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ug.svg"},"Patterns":null},"um.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/um.svg"},"Patterns":null},"un.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/un.svg"},"Patterns":null},"us.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/us.svg"},"Patterns":null},"uy.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/uy.svg"},"Patterns":null},"uz.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/uz.svg"},"Patterns":null},"va.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/va.svg"},"Patterns":null},"vc.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/vc.svg"},"Patterns":null},"ve.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ve.svg"},"Patterns":null},"vg.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/vg.svg"},"Patterns":null},"vi.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/vi.svg"},"Patterns":null},"vn.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/vn.svg"},"Patterns":null},"vu.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/vu.svg"},"Patterns":null},"wf.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/wf.svg"},"Patterns":null},"ws.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ws.svg"},"Patterns":null},"xk.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/xk.svg"},"Patterns":null},"ye.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/ye.svg"},"Patterns":null},"yt.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/yt.svg"},"Patterns":null},"za.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/za.svg"},"Patterns":null},"zm.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/zm.svg"},"Patterns":null},"zw.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flag-icon-css/flags/4x3/zw.svg"},"Patterns":null},"ad.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eirfgqhqn3-18er7rk4ye.gz"},"Patterns":null},"ae.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3jxati4e5r-9xar5kmvxi.gz"},"Patterns":null},"af.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"45ljv7va8p-kb0m2s9r95.gz"},"Patterns":null},"ag.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zib5omh739-ot0fd9dfgs.gz"},"Patterns":null},"ai.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8732vaj8j3-84d4mxoh8b.gz"},"Patterns":null},"al.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mzdbloin52-118rultwkj.gz"},"Patterns":null},"am.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xcuiuhfxfb-mwpiebsd3y.gz"},"Patterns":null},"ao.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ika0ylhs31-x9ad2w4o0n.gz"},"Patterns":null},"aq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i9g2ew8xby-yyc2y8lco0.gz"},"Patterns":null},"ar.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oin01gnguv-c8kirvkjez.gz"},"Patterns":null},"as.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7msehsvxvq-s7462lu45h.gz"},"Patterns":null},"at.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k4xqozzo8n-huft6nxt45.gz"},"Patterns":null},"au.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rvnqik4l0z-ulf0mee0w8.gz"},"Patterns":null},"aw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7tnhhxn3md-crr75ar4sv.gz"},"Patterns":null},"ax.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ntnhis6mxx-sw0ge7zzzu.gz"},"Patterns":null},"az.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hoqj67xcn0-vafbwcu5da.gz"},"Patterns":null},"ba.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9khwc8jqw7-xw31c9xhbw.gz"},"Patterns":null},"bb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lg1use67zc-qbp1w4n2n2.gz"},"Patterns":null},"bd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0zdqqw7am5-27tcstnob2.gz"},"Patterns":null},"be.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"umnc5xk7zk-8qap1c0wio.gz"},"Patterns":null},"bf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eelda1hur2-1kqgz8erf0.gz"},"Patterns":null},"bg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uyk4d6t6pa-6wdwjhmp11.gz"},"Patterns":null},"bh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sccdfrx2sf-0nvh4udqi0.gz"},"Patterns":null},"bi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xtv53ihni8-nnam30c5a2.gz"},"Patterns":null},"bj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5x9si27920-9ifq2ynx8j.gz"},"Patterns":null},"bl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jtikvoa5u6-5cw4j2csvh.gz"},"Patterns":null},"bm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x561coffvv-qfalq4rzxn.gz"},"Patterns":null},"bn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fe8zocfdcd-qpaduj4rb6.gz"},"Patterns":null},"bo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ipq4jv7t22-6dap1xeudi.gz"},"Patterns":null},"bq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gtyej3epp9-tal2wmz7ss.gz"},"Patterns":null},"br.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cbcdxdx2fz-demc06rl6h.gz"},"Patterns":null},"bs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o3p7s7zcsi-rqfjjkmj2g.gz"},"Patterns":null},"bt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hngy363yq0-3ur3j45wxv.gz"},"Patterns":null},"bv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6ubqfx4nnj-g6zl5w1b5t.gz"},"Patterns":null},"bw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"16t3ihwcpd-pfhixszyps.gz"},"Patterns":null},"by.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ghv3kknq38-g3u1soz28s.gz"},"Patterns":null},"bz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s63z2el37u-rkrbkmyhf5.gz"},"Patterns":null},"ca.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6ngaja0dv9-vy2fzynkmh.gz"},"Patterns":null},"cc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ul8abw8dhs-5kyfvat9c5.gz"},"Patterns":null},"cd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lpadoga4r9-p8mxlq5ad2.gz"},"Patterns":null},"cf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gwyaxywvw1-p45g5osnu8.gz"},"Patterns":null},"cg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qozgu34v28-s0yubzxtgx.gz"},"Patterns":null},"ch.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tp0f0jpr0r-b5a2n97p5h.gz"},"Patterns":null},"ci.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l3ij5aptp8-g8zbpxy57h.gz"},"Patterns":null},"ck.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u3er4oxciy-15sxffyysv.gz"},"Patterns":null},"cl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6xumgx048e-sokbwlvfao.gz"},"Patterns":null},"cm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3p16ynk0cb-fcxv5y6jcj.gz"},"Patterns":null},"cn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w1cy5goc56-q1h200p9yv.gz"},"Patterns":null},"co.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p8np802d8k-j1a4tjfzcf.gz"},"Patterns":null},"cr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6a9jc5qnrp-nde2cpet4e.gz"},"Patterns":null},"cu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ydquyrwqw9-dfakosk4v5.gz"},"Patterns":null},"cv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g1ytdjai5a-bw007z29le.gz"},"Patterns":null},"cw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"85vwre685t-z3q52x1pa2.gz"},"Patterns":null},"cx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2460ivt196-o6pafbt9hk.gz"},"Patterns":null},"cy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i1258z4syi-fz7urvstg5.gz"},"Patterns":null},"cz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wakebs0vnj-ejk6evt42n.gz"},"Patterns":null},"de.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sd26tlaqzd-iw24uqslw7.gz"},"Patterns":null},"dj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0a9k1l2wu2-juwgy90tlo.gz"},"Patterns":null},"dk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a8h5c89wtm-f5pzmrk1lz.gz"},"Patterns":null},"dm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bil2vmrahg-lbltqgrwg8.gz"},"Patterns":null},"do.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lofki4qgzq-duzem58qgp.gz"},"Patterns":null},"dz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sdt2o8sfbt-6hlwvd79rk.gz"},"Patterns":null},"ec.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bqeanh2ed6-59kyuvmtqo.gz"},"Patterns":null},"ee.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kjv1w8149y-1ewx906crc.gz"},"Patterns":null},"eg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zku1lxg03m-6v490bvzxn.gz"},"Patterns":null},"eh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mwpfdxpzet-hr3m1a727q.gz"},"Patterns":null},"er.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9zu4na8q10-zlpeyjz20i.gz"},"Patterns":null},"es-ca.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bberutjxrv-9zxpv1hmrc.gz"},"Patterns":null},"es-ga.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rarzhdgtaj-748vxdu5js.gz"},"Patterns":null},"es.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bu3dnmk3z6-fgl71h10z1.gz"},"Patterns":null},"et.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pso4ljsulg-g7h9xvad1p.gz"},"Patterns":null},"eu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"agk2apyen5-ftg2n079cl.gz"},"Patterns":null},"fi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vptant9sio-bcsphud18u.gz"},"Patterns":null},"fj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dxm574azg0-53rsp7rg5g.gz"},"Patterns":null},"fk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"flfs2e7vj5-9gf7ubpr6s.gz"},"Patterns":null},"fm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jrett2juti-02xabk1784.gz"},"Patterns":null},"fo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g8233ejssv-ylena9ndfg.gz"},"Patterns":null},"fr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yn11g411o3-ccpwzsk3z4.gz"},"Patterns":null},"ga.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tq5cnaun7g-z9gx4mpqke.gz"},"Patterns":null},"gb-eng.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1g6dmlktsp-irwh2vasa2.gz"},"Patterns":null},"gb-nir.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oc38a84e9v-59v2lapkxq.gz"},"Patterns":null},"gb-sct.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v3wvc3fn12-0ssy4gelxa.gz"},"Patterns":null},"gb-wls.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bukmxawslv-mvse2ws5ls.gz"},"Patterns":null},"gb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"svxcibtps2-kgtktgxk9p.gz"},"Patterns":null},"gd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zx36xb984o-16tkmizggm.gz"},"Patterns":null},"ge.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vbbf5r882j-9d8cb2kydt.gz"},"Patterns":null},"gf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kfh7qvsi55-0zs4lrruqt.gz"},"Patterns":null},"gg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7lthyx2wwn-ovqxkizuq6.gz"},"Patterns":null},"gh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tu7c7ped8m-x9xe267ewh.gz"},"Patterns":null},"gi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q4zryzqu0i-q8jrh8nsul.gz"},"Patterns":null},"gl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z4f9vtnhzl-lta0aev46t.gz"},"Patterns":null},"gm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p46bm07viz-3tntkhybdo.gz"},"Patterns":null},"gn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zdzzpq3f6f-4ol0alivi0.gz"},"Patterns":null},"gp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2parbf57td-l8ur4txy0b.gz"},"Patterns":null},"gq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cj06ag5mej-bbscocwefz.gz"},"Patterns":null},"gr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9v47jchff6-3xicp8o417.gz"},"Patterns":null},"gs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r84rtq2rzl-42trfb04s3.gz"},"Patterns":null},"gt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cgmna1cntm-oczic650bm.gz"},"Patterns":null},"gu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w8hf7w4app-9bbfmbkuz4.gz"},"Patterns":null},"gw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lr88p3stds-vslgagabon.gz"},"Patterns":null},"gy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fp13e53ecf-579aqp2fhy.gz"},"Patterns":null},"hk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"slh4nbrgi4-51ieojlrs7.gz"},"Patterns":null},"hm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4fok93l8eb-309gxuv9q8.gz"},"Patterns":null},"hn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fgpduwuhd6-jbtdn0ifj0.gz"},"Patterns":null},"hr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1fxcj4udr9-3h77hjhzri.gz"},"Patterns":null},"ht.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fr76nwu9kl-o2ck51s9cm.gz"},"Patterns":null},"hu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ao9lcu2qoc-klw7g97ojv.gz"},"Patterns":null},"id.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"13dj6cwxw4-u6mebfkttz.gz"},"Patterns":null},"ie.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"49r2y6bgsp-ocilolz24g.gz"},"Patterns":null},"il.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tvn38274gf-9y42pva64d.gz"},"Patterns":null},"im.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9rcp29mfwb-t46kz3ddg4.gz"},"Patterns":null},"in.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"et5md1z83o-w0oulcyfnt.gz"},"Patterns":null},"io.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"axhd303vyd-0ep24bqp9j.gz"},"Patterns":null},"iq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dgieafnqae-7ns3deaolt.gz"},"Patterns":null},"ir.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0ofgklnndh-iwi53vq2u1.gz"},"Patterns":null},"is.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8835l86ql6-hoq529jeeb.gz"},"Patterns":null},"it.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0ayeq6k53c-2hws4x3f71.gz"},"Patterns":null},"je.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yrqtbbflp3-liz185s9ut.gz"},"Patterns":null},"jm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ajapnutjpo-zonn2x4zz3.gz"},"Patterns":null},"jo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g39lpmvt4k-zhse3bfmz9.gz"},"Patterns":null},"jp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m92bkpgihu-24ruwqrkce.gz"},"Patterns":null},"ke.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3eohccm2wr-ll4m8sxzor.gz"},"Patterns":null},"kg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rdtpev36o8-1zpdpcagkq.gz"},"Patterns":null},"kh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4cvihyj5xy-73ykq7930k.gz"},"Patterns":null},"ki.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9r7x5ofw8o-vs2k9n2p5g.gz"},"Patterns":null},"km.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6cdvz8bkc5-71zfplngmx.gz"},"Patterns":null},"kn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x5ct94ifkw-tmljozp923.gz"},"Patterns":null},"kp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yl6gmsvh8r-x77eejjtwq.gz"},"Patterns":null},"kr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vwu1d0u8ex-scquasz2a0.gz"},"Patterns":null},"kw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nq2ar4s7mt-v09s0hvvu4.gz"},"Patterns":null},"ky.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3p946ee708-5du9igckm4.gz"},"Patterns":null},"kz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7j2zps8n2n-tdvvtjm8ya.gz"},"Patterns":null},"la.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5tojz25zt7-bgadfstgle.gz"},"Patterns":null},"lb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bo16s3w8e8-mf6fs9gcom.gz"},"Patterns":null},"lc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oyxfk4haw6-rh61ehh2yd.gz"},"Patterns":null},"li.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qb73j4c9hy-4afeh8u93e.gz"},"Patterns":null},"lk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tt1gsrfmpy-y2kyy12mc3.gz"},"Patterns":null},"lr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xb1fuwnmvf-l5wsiwc211.gz"},"Patterns":null},"ls.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o639ty6f2q-xrwjmjt8x6.gz"},"Patterns":null},"lt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oaz7jf9kjv-oa695fkfl2.gz"},"Patterns":null},"lu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4a9ro2q5rr-5ua1p8bj67.gz"},"Patterns":null},"lv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yab2y79jx6-syvf01wvhc.gz"},"Patterns":null},"ly.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"szcgmqjjuv-tfl84cln8h.gz"},"Patterns":null},"ma.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ce1jets7id-xs81a9n747.gz"},"Patterns":null},"mc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tm738pe1xf-3dwlsflt2l.gz"},"Patterns":null},"md.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"srzz1iuvjh-rt8mw638co.gz"},"Patterns":null},"me.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"df3wr2k4ka-oi9thzkjdj.gz"},"Patterns":null},"mf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9a82a6bypk-twg1lw2f8c.gz"},"Patterns":null},"mg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kq5phsvddn-8785srnlyu.gz"},"Patterns":null},"mh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xakv8hpef7-j7feczg9c1.gz"},"Patterns":null},"mk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nc98dve9vz-n5uh7452fq.gz"},"Patterns":null},"ml.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dqubrz5zwm-gg4bhvchq7.gz"},"Patterns":null},"mm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5mjxsoqdew-9z3y6c9r35.gz"},"Patterns":null},"mn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eevhyo64za-b2rwuqxj3d.gz"},"Patterns":null},"mo.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t8i80aikha-pd5bp9ygdj.gz"},"Patterns":null},"mp.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uo9m82dfod-t89xrowck5.gz"},"Patterns":null},"mq.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"az7lltz1gs-jlkg6ju58y.gz"},"Patterns":null},"mr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"trwt6bkzb2-o3yp6hch9h.gz"},"Patterns":null},"ms.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kug5cc9cct-z934gvjn8m.gz"},"Patterns":null},"mt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k7jaji188d-8cazyy7xzg.gz"},"Patterns":null},"mu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pph2dby646-virkhwiwao.gz"},"Patterns":null},"mv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pnxar99foy-vi48244byb.gz"},"Patterns":null},"mw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7hwq0bdz42-qyzl84gcvr.gz"},"Patterns":null},"mx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"95emugpxef-4pwbwnyirt.gz"},"Patterns":null},"my.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gtm0rlk6ux-0n3wpoyw5b.gz"},"Patterns":null},"mz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d2bh3m71sj-vkp42hbarx.gz"},"Patterns":null},"na.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zq2n6qcqp9-d3dveywoou.gz"},"Patterns":null},"nc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f5vtuz1pgt-ps1v7gil9y.gz"},"Patterns":null},"ne.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qcg3aux6gn-z9rhya87cs.gz"},"Patterns":null},"nf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0n1xn0ux7y-cozj153nwn.gz"},"Patterns":null},"ng.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zgeabtfzyo-t19ji5wzmm.gz"},"Patterns":null},"ni.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j6gxzf80pt-537dzq2rpj.gz"},"Patterns":null},"nl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s29cqqrb92-976p2fn19b.gz"},"Patterns":null},"no.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bqidkay9bm-f5iocpony9.gz"},"Patterns":null},"np.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nh0cgj7os5-pv60t76beq.gz"},"Patterns":null},"nr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8za5p4ib0-yotvznr7a5.gz"},"Patterns":null},"nu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"smckzdqoku-kfwz1ox3bg.gz"},"Patterns":null},"nz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3zdo8n8vql-ij1ukxoe48.gz"},"Patterns":null},"om.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2fhd4w3i91-p4w5buq9wt.gz"},"Patterns":null},"pa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ajurhnjw8b-zjmpuxpw5h.gz"},"Patterns":null},"pe.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nsvmbgtz4a-zwe6vmnztr.gz"},"Patterns":null},"pf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2pj3796e86-1tfmtzayeb.gz"},"Patterns":null},"pg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m5boeq7rig-e896wc65s1.gz"},"Patterns":null},"ph.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l0yjqivp5h-g7n4464wr3.gz"},"Patterns":null},"pk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"twpw8qj1ey-c0si16wveb.gz"},"Patterns":null},"pl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6egcww5iff-6jz8iojprh.gz"},"Patterns":null},"pm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9313syuren-xczst7hx7i.gz"},"Patterns":null},"pn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mxh2ms58jd-gpe9t231df.gz"},"Patterns":null},"pr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2vlx2r9dgo-6s6f5opz6w.gz"},"Patterns":null},"ps.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dqo40lbszx-stdjpmrrog.gz"},"Patterns":null},"pt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e4rvobik5c-xx40m3rvyh.gz"},"Patterns":null},"pw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w9nd89fq3q-7hq6i80nc9.gz"},"Patterns":null},"py.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p77uw1u18i-scal9jgm7n.gz"},"Patterns":null},"qa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wf6vl2zres-ba4tobora4.gz"},"Patterns":null},"re.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l1xhas8s6f-whsqkcsc32.gz"},"Patterns":null},"ro.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8hsrt9i5b-gy0nob2b27.gz"},"Patterns":null},"rs.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"68cjp6vu2w-delc76xqq7.gz"},"Patterns":null},"ru.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g1nsy7yprm-0fxu01de84.gz"},"Patterns":null},"rw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z2aarb5rcw-266onl01un.gz"},"Patterns":null},"sa.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"egv2o3ecix-jbchf411k3.gz"},"Patterns":null},"sb.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dpmaddplzk-wyhiaouw7r.gz"},"Patterns":null},"sc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ypqnz954zp-l6gp9ztb89.gz"},"Patterns":null},"sd.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c2fvx3irws-mhvvf2jobu.gz"},"Patterns":null},"se.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"soarsm1avf-gjpxydtukc.gz"},"Patterns":null},"sg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"n15f0fk2ka-o70qnj7hxh.gz"},"Patterns":null},"sh.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ob6o1y4xxm-squ3oqgyax.gz"},"Patterns":null},"si.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0gy7u0swm4-z9zdptiifk.gz"},"Patterns":null},"sj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bwuophfk1j-vrhbmigbqh.gz"},"Patterns":null},"sk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k2wuz7dy8b-r746r9uotu.gz"},"Patterns":null},"sl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"exx4iaoj4k-v8v48j54dn.gz"},"Patterns":null},"sm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xmbz4rr8j1-qtm0e5f3qr.gz"},"Patterns":null},"sn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4075tjxmgd-ld2qq1018s.gz"},"Patterns":null},"so.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7mrrvnuj5q-mqkpm6762t.gz"},"Patterns":null},"sr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ptpn2ctja2-b3f14aez7v.gz"},"Patterns":null},"ss.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e056eg0wpc-pg6r3ix4es.gz"},"Patterns":null},"st.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"khwufuham3-hxeb7bl40u.gz"},"Patterns":null},"sv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4izkbiqwec-f3y31hqkwd.gz"},"Patterns":null},"sx.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"onrp8cg6lf-t30wzkmz6e.gz"},"Patterns":null},"sy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qrcb5olcpa-3pxckek5vv.gz"},"Patterns":null},"sz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"95496e8zkq-0n66rxp38o.gz"},"Patterns":null},"tc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tyciwdlvof-zcx5k64zcf.gz"},"Patterns":null},"td.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tvl93kl7mf-va4rbj0e33.gz"},"Patterns":null},"tf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qgfuu3kj0a-wz5g9lkqr6.gz"},"Patterns":null},"tg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8jktqxq02k-7fxuxcblzy.gz"},"Patterns":null},"th.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cgmq5gy2ro-npd350owc9.gz"},"Patterns":null},"tj.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mv3zn35gmr-iv27qztr60.gz"},"Patterns":null},"tk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4wqw8aai5i-q9ernvvdkn.gz"},"Patterns":null},"tl.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9wmjhujsal-0jnryj8yqr.gz"},"Patterns":null},"tm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gtlwneu3j6-rpjt1et1os.gz"},"Patterns":null},"tn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8zkreu3u6a-di1m757v1i.gz"},"Patterns":null},"to.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1n585rz5de-bt9jbv83rs.gz"},"Patterns":null},"tr.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"chsjzkh0pv-475fbisc9p.gz"},"Patterns":null},"tt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mso0z0elju-p4n5mtosqz.gz"},"Patterns":null},"tv.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0tuc1vuozx-v1l6q36rpu.gz"},"Patterns":null},"tw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5wypo7sauf-7bhed859mx.gz"},"Patterns":null},"tz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u319zqjoat-78zkt3uw89.gz"},"Patterns":null},"ua.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iq3rc6b9ti-580k1t4glo.gz"},"Patterns":null},"ug.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vnmbp2bqo0-j7c4fhx3ht.gz"},"Patterns":null},"um.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r4sg93nmpd-bry31mwyvu.gz"},"Patterns":null},"un.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mtqb4r4zm4-e4ypm8jcuy.gz"},"Patterns":null},"us.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1un5gv6ucl-is5558mia7.gz"},"Patterns":null},"uy.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1sch0yloin-yntmriua25.gz"},"Patterns":null},"uz.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qsinv0gshb-dndve020mf.gz"},"Patterns":null},"va.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wef9spwtmj-ll9v6s2yci.gz"},"Patterns":null},"vc.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k2wi84666l-xkuq83h6a2.gz"},"Patterns":null},"ve.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"frxjzdnw9n-0r780ndodr.gz"},"Patterns":null},"vg.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oi6135tvus-mgdxrlimf0.gz"},"Patterns":null},"vi.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0i5l3rfde4-mtkelvilr2.gz"},"Patterns":null},"vn.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hz0rt8exwf-9mwcworrwf.gz"},"Patterns":null},"vu.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"377lhrtzlv-3bftqcjr5s.gz"},"Patterns":null},"wf.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"umtflthxda-kwm2uspr9t.gz"},"Patterns":null},"ws.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"86zzspz2pw-dprrzk5mng.gz"},"Patterns":null},"xk.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ofeatel0t8-8ihqb3rwsx.gz"},"Patterns":null},"ye.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xq1di5xq9c-61y7uodp86.gz"},"Patterns":null},"yt.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pu2khbkz9j-0fz6w9wfgs.gz"},"Patterns":null},"za.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bq1lrudabt-6gndfamx8k.gz"},"Patterns":null},"zm.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"82lq9801o4-f6frabnl4g.gz"},"Patterns":null},"zw.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ejc2y2g2ek-apnabhteiz.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"flot":{"Children":{"jquery.flot.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/jquery.flot.js"},"Patterns":null},"plugins":{"Children":{"jquery.flot.axislabels.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.axislabels.js"},"Patterns":null},"jquery.flot.browser.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.browser.js"},"Patterns":null},"jquery.flot.categories.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.categories.js"},"Patterns":null},"jquery.flot.composeImages.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.composeImages.js"},"Patterns":null},"jquery.flot.crosshair.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.crosshair.js"},"Patterns":null},"jquery.flot.drawSeries.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.drawSeries.js"},"Patterns":null},"jquery.flot.errorbars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.errorbars.js"},"Patterns":null},"jquery.flot.fillbetween.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.fillbetween.js"},"Patterns":null},"jquery.flot.flatdata.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.flatdata.js"},"Patterns":null},"jquery.flot.hover.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.hover.js"},"Patterns":null},"jquery.flot.image.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.image.js"},"Patterns":null},"jquery.flot.legend.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.legend.js"},"Patterns":null},"jquery.flot.logaxis.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.logaxis.js"},"Patterns":null},"jquery.flot.navigate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.navigate.js"},"Patterns":null},"jquery.flot.pie.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.pie.js"},"Patterns":null},"jquery.flot.resize.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.resize.js"},"Patterns":null},"jquery.flot.saturated.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.saturated.js"},"Patterns":null},"jquery.flot.selection.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.selection.js"},"Patterns":null},"jquery.flot.stack.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.stack.js"},"Patterns":null},"jquery.flot.symbol.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.symbol.js"},"Patterns":null},"jquery.flot.threshold.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.threshold.js"},"Patterns":null},"jquery.flot.time.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.time.js"},"Patterns":null},"jquery.flot.touch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.touch.js"},"Patterns":null},"jquery.flot.touchNavigate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.touchNavigate.js"},"Patterns":null},"jquery.flot.uiConstants.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/flot/plugins/jquery.flot.uiConstants.js"},"Patterns":null},"jquery.flot.axislabels.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"byptbq8ek9-16r4xj517g.gz"},"Patterns":null},"jquery.flot.browser.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0nem3nt0bc-mqzhy36zkm.gz"},"Patterns":null},"jquery.flot.categories.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gckks4knge-kqo4snsln1.gz"},"Patterns":null},"jquery.flot.composeImages.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"em646iydx6-gzfq0iedcu.gz"},"Patterns":null},"jquery.flot.crosshair.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c756cx4zh4-vm9huclddm.gz"},"Patterns":null},"jquery.flot.drawSeries.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vk7zl2uimt-9n5xys6zbo.gz"},"Patterns":null},"jquery.flot.errorbars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rwvc2eor2q-2x6jlgle4t.gz"},"Patterns":null},"jquery.flot.fillbetween.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"48osnswm1w-50h5svxfo2.gz"},"Patterns":null},"jquery.flot.flatdata.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ukp0t1ny2l-q5ib1cr743.gz"},"Patterns":null},"jquery.flot.hover.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zb08bq3ghb-ke49wy7g7q.gz"},"Patterns":null},"jquery.flot.image.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ydhah22f6n-qt64im0b9x.gz"},"Patterns":null},"jquery.flot.legend.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yzws4t5za0-4c2grexrg0.gz"},"Patterns":null},"jquery.flot.logaxis.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mn66jq33s3-2mcdie4p1n.gz"},"Patterns":null},"jquery.flot.navigate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lvvji9uta3-1x9ylo5r0q.gz"},"Patterns":null},"jquery.flot.pie.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o89mzbt8s9-e1qqd1jwsp.gz"},"Patterns":null},"jquery.flot.resize.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vmcsqfcd12-g83an5masv.gz"},"Patterns":null},"jquery.flot.saturated.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dnknqdi8ic-9vvso95c7b.gz"},"Patterns":null},"jquery.flot.selection.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hvvhlafdps-6kibm7xd94.gz"},"Patterns":null},"jquery.flot.stack.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7twkfbf30p-axxnew0zrl.gz"},"Patterns":null},"jquery.flot.symbol.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2807u0t0ov-sy2ose2yjd.gz"},"Patterns":null},"jquery.flot.threshold.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kf7mas7ra1-nyhtod8ijh.gz"},"Patterns":null},"jquery.flot.time.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ayr6l3h62f-h7ky0urx58.gz"},"Patterns":null},"jquery.flot.touch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hhxxq8xu16-ax0zhfkczq.gz"},"Patterns":null},"jquery.flot.touchNavigate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9pf2kgz0mc-abjp8lbn7h.gz"},"Patterns":null},"jquery.flot.uiConstants.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"as58vwqtz6-9ufqof3son.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery.flot.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yn7oqc0ynh-5mptjc4rmw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fontawesome-free":{"Children":{"css":{"Children":{"all.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/all.css"},"Patterns":null},"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/all.min.css"},"Patterns":null},"brands.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/brands.css"},"Patterns":null},"brands.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/brands.min.css"},"Patterns":null},"fontawesome.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/fontawesome.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/fontawesome.min.css"},"Patterns":null},"regular.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/regular.css"},"Patterns":null},"regular.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/regular.min.css"},"Patterns":null},"solid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/solid.css"},"Patterns":null},"solid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/solid.min.css"},"Patterns":null},"svg-with-js.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/svg-with-js.css"},"Patterns":null},"svg-with-js.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/svg-with-js.min.css"},"Patterns":null},"v4-shims.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/v4-shims.css"},"Patterns":null},"v4-shims.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/css/v4-shims.min.css"},"Patterns":null},"all.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o89oq8u90p-mc4uiocwf6.gz"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lbdfp3hkvh-zkx4zk6074.gz"},"Patterns":null},"brands.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pjy56znmkj-c7k4vhz5a2.gz"},"Patterns":null},"brands.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zjf6bsogve-8u4lzhpehz.gz"},"Patterns":null},"fontawesome.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rm09pe76b0-vkbc6hyu5u.gz"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4nuhos494w-s5txor0jvn.gz"},"Patterns":null},"regular.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8yoqxlyvq3-28vyx365ha.gz"},"Patterns":null},"regular.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f6bjostrfp-kwoltvt08d.gz"},"Patterns":null},"solid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yh60qnutiu-7vpvdat1xv.gz"},"Patterns":null},"solid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zalefmyz9w-gakb98tatp.gz"},"Patterns":null},"svg-with-js.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kqfst2ypsb-kfn6qeemzw.gz"},"Patterns":null},"svg-with-js.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zuzxr612sr-y2ucplzyiw.gz"},"Patterns":null},"v4-shims.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ojghb92wrc-5q62slhz3y.gz"},"Patterns":null},"v4-shims.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6lecewpnp9-yk8dyifsee.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.eot"},"Patterns":null},"fa-brands-400.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.svg"},"Patterns":null},"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.eot"},"Patterns":null},"fa-regular-400.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.svg"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.eot"},"Patterns":null},"fa-solid-900.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.svg"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fontawesome-free/webfonts/fa-solid-900.woff2"},"Patterns":null},"fa-brands-400.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9aa1yox4gm-zldwdlk03n.gz"},"Patterns":null},"fa-regular-400.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jlzi1g3mzx-am4lr28t2c.gz"},"Patterns":null},"fa-solid-900.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ni5wx65cs6-tgs41a5efn.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"fullcalendar":{"Children":{"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/LICENSE.txt"},"Patterns":null},"locales-all.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales-all.js"},"Patterns":null},"locales-all.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales-all.min.js"},"Patterns":null},"locales":{"Children":{"af.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/af.js"},"Patterns":null},"ar-dz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-dz.js"},"Patterns":null},"ar-kw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-kw.js"},"Patterns":null},"ar-ly.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-ly.js"},"Patterns":null},"ar-ma.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-ma.js"},"Patterns":null},"ar-sa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-sa.js"},"Patterns":null},"ar-tn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar-tn.js"},"Patterns":null},"ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ar.js"},"Patterns":null},"az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/az.js"},"Patterns":null},"bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/bg.js"},"Patterns":null},"bs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/bs.js"},"Patterns":null},"ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ca.js"},"Patterns":null},"cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/cs.js"},"Patterns":null},"cy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/cy.js"},"Patterns":null},"da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/da.js"},"Patterns":null},"de-at.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/de-at.js"},"Patterns":null},"de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/de.js"},"Patterns":null},"el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/el.js"},"Patterns":null},"en-au.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/en-au.js"},"Patterns":null},"en-gb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/en-gb.js"},"Patterns":null},"en-nz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/en-nz.js"},"Patterns":null},"eo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/eo.js"},"Patterns":null},"es-us.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/es-us.js"},"Patterns":null},"es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/es.js"},"Patterns":null},"et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/et.js"},"Patterns":null},"eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/eu.js"},"Patterns":null},"fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/fa.js"},"Patterns":null},"fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/fi.js"},"Patterns":null},"fr-ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/fr-ca.js"},"Patterns":null},"fr-ch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/fr-ch.js"},"Patterns":null},"fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/fr.js"},"Patterns":null},"gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/gl.js"},"Patterns":null},"he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/he.js"},"Patterns":null},"hi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/hi.js"},"Patterns":null},"hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/hr.js"},"Patterns":null},"hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/hu.js"},"Patterns":null},"hy-am.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/hy-am.js"},"Patterns":null},"id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/id.js"},"Patterns":null},"is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/is.js"},"Patterns":null},"it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/it.js"},"Patterns":null},"ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ja.js"},"Patterns":null},"ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ka.js"},"Patterns":null},"kk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/kk.js"},"Patterns":null},"ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ko.js"},"Patterns":null},"lb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/lb.js"},"Patterns":null},"lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/lt.js"},"Patterns":null},"lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/lv.js"},"Patterns":null},"mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/mk.js"},"Patterns":null},"ms.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ms.js"},"Patterns":null},"nb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/nb.js"},"Patterns":null},"ne.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ne.js"},"Patterns":null},"nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/nl.js"},"Patterns":null},"nn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/nn.js"},"Patterns":null},"pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/pl.js"},"Patterns":null},"pt-br.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/pt-br.js"},"Patterns":null},"pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/pt.js"},"Patterns":null},"ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ro.js"},"Patterns":null},"ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ru.js"},"Patterns":null},"sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sk.js"},"Patterns":null},"sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sl.js"},"Patterns":null},"sq.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sq.js"},"Patterns":null},"sr-cyrl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sr-cyrl.js"},"Patterns":null},"sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sr.js"},"Patterns":null},"sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/sv.js"},"Patterns":null},"ta-in.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ta-in.js"},"Patterns":null},"th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/th.js"},"Patterns":null},"tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/tr.js"},"Patterns":null},"ug.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/ug.js"},"Patterns":null},"uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/uk.js"},"Patterns":null},"uz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/uz.js"},"Patterns":null},"vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/vi.js"},"Patterns":null},"zh-cn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/zh-cn.js"},"Patterns":null},"zh-tw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/locales/zh-tw.js"},"Patterns":null},"af.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xksjs2ub73-w0vglxpjcd.gz"},"Patterns":null},"ar-dz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"prjdnevwq8-cq47h79u7h.gz"},"Patterns":null},"ar-kw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bpxuwkd83h-m7uhvixhqq.gz"},"Patterns":null},"ar-ly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3mu5m7gba6-cbiqqiqwkg.gz"},"Patterns":null},"ar-ma.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"syc1rdj87z-g60pifjvnd.gz"},"Patterns":null},"ar-sa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"skqvd2xz7y-m7v12nj9bz.gz"},"Patterns":null},"ar-tn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dmpg97c47c-tgwiszaemh.gz"},"Patterns":null},"ar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tcfxs6a5cv-ry5macx31m.gz"},"Patterns":null},"az.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o8xnc57zgu-z9fgdc477p.gz"},"Patterns":null},"bg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yfp3s6nj1j-zechni20z6.gz"},"Patterns":null},"bs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2qil7vxpil-0dhmdvzkx7.gz"},"Patterns":null},"ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xyi26nmqw7-0fy03hxjrf.gz"},"Patterns":null},"cs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"drdi0hgucj-6g13a2iqgg.gz"},"Patterns":null},"cy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"haej97kf1i-4br3d3ead7.gz"},"Patterns":null},"da.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l1c9nmrjdm-5pa463m883.gz"},"Patterns":null},"de-at.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xrj921p3jf-p7z29lv538.gz"},"Patterns":null},"de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"60goty14zh-hescznmekm.gz"},"Patterns":null},"el.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ls7fe563jc-tsqm07ar3d.gz"},"Patterns":null},"en-au.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"waofkemzx9-3zurwtzit1.gz"},"Patterns":null},"en-gb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1viypaechw-0r4hkuux8g.gz"},"Patterns":null},"en-nz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m5s6erjbb8-jhifd4hqa7.gz"},"Patterns":null},"eo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f70k3s4uoo-d4p06wrrzs.gz"},"Patterns":null},"es-us.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q545ermadv-m90vwo11c2.gz"},"Patterns":null},"es.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7l03vmjkh9-iij7v59v9j.gz"},"Patterns":null},"et.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1ost0jv72m-g1fmp1b1n9.gz"},"Patterns":null},"eu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7klmtw7mfl-suj77kpkos.gz"},"Patterns":null},"fa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bdtz1aiw8r-m0fxmujbx7.gz"},"Patterns":null},"fi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0tk5h1m5cs-je7itqyfod.gz"},"Patterns":null},"fr-ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h97hb3qeyl-rv723ckpdm.gz"},"Patterns":null},"fr-ch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cimnld6rs7-tvotetbgkx.gz"},"Patterns":null},"fr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wmz1i4p64o-gyh6wc2ad8.gz"},"Patterns":null},"gl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5kigyh3tme-excdfhz4ii.gz"},"Patterns":null},"he.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sousg0ppzl-xe78n39hbw.gz"},"Patterns":null},"hi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qqvjm2iler-iuzdckn7n0.gz"},"Patterns":null},"hr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qennkg6frp-mxk8wq8xi2.gz"},"Patterns":null},"hu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"am9i55a946-7dh1p0upxg.gz"},"Patterns":null},"hy-am.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2hdybea9q3-bmqxq0tuoy.gz"},"Patterns":null},"id.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4qfa38le8n-pnbacvvbr9.gz"},"Patterns":null},"is.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4df2s9yygz-vg2z9d30jt.gz"},"Patterns":null},"it.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q802huvfef-r0wsgqpuxs.gz"},"Patterns":null},"ja.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tzh1npcl29-0cwpq890c8.gz"},"Patterns":null},"ka.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"89baymld56-b7t6npklu5.gz"},"Patterns":null},"kk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9ixna7c6fi-r4xacdohip.gz"},"Patterns":null},"ko.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o23e74weoh-rxss3fl7mg.gz"},"Patterns":null},"lb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ucqmrrdwif-2r74gzyuj0.gz"},"Patterns":null},"lt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ykqpzxwaoz-4aqkwz3z0y.gz"},"Patterns":null},"lv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ys24tj016a-upn72lf5lw.gz"},"Patterns":null},"mk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"edazsi0zav-29h2clzdec.gz"},"Patterns":null},"ms.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yya7hpkm6l-g0eqoom4vh.gz"},"Patterns":null},"nb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rozieayqqt-asgh5r5zzt.gz"},"Patterns":null},"ne.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cb6gurmcsw-4yvv8jfnwe.gz"},"Patterns":null},"nl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qajbiafgvq-sokav5hu0e.gz"},"Patterns":null},"nn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"52xn3zk5c3-q0moxg5lg5.gz"},"Patterns":null},"pl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rga73029v9-kopi2gaxho.gz"},"Patterns":null},"pt-br.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6hcz6rmxkc-ua1q2y614z.gz"},"Patterns":null},"pt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m2a1ak60la-z77arlwbkl.gz"},"Patterns":null},"ro.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bmqw6qqvj0-4echvxs7xo.gz"},"Patterns":null},"ru.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lmr8i7ex79-jcjhgurlwo.gz"},"Patterns":null},"sk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ggu0w7fgct-fu7o88e7mq.gz"},"Patterns":null},"sl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k0bb769s1w-nda3cjxv8t.gz"},"Patterns":null},"sq.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wbae4538k5-d69h0j6iwc.gz"},"Patterns":null},"sr-cyrl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cznyru2mhs-s1x7u07bi8.gz"},"Patterns":null},"sr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ue50koihvb-oghl0hpket.gz"},"Patterns":null},"sv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gew96k6p4g-l4vda5qc5r.gz"},"Patterns":null},"ta-in.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ipm11sejxf-k8ausx24d0.gz"},"Patterns":null},"th.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m883vlxala-wjnluza4zo.gz"},"Patterns":null},"tr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o13a5qnvfj-bxr034npbb.gz"},"Patterns":null},"ug.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ninzhelozu-wntrlh1r3j.gz"},"Patterns":null},"uk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"prsj16ryu7-3ljtvj88e1.gz"},"Patterns":null},"uz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ycx32j81hx-mllxfi1vrr.gz"},"Patterns":null},"vi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"clxvoq68ic-8np3gdbcuw.gz"},"Patterns":null},"zh-cn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"srro6252wx-sq4mv8auob.gz"},"Patterns":null},"zh-tw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t943sbuzvx-2on267gxmp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"main.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/main.css"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/main.js"},"Patterns":null},"main.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/main.min.css"},"Patterns":null},"main.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/fullcalendar/main.min.js"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ejd7uzvg29-ix2qxt9vnl.gz"},"Patterns":null},"locales-all.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"04hg0y2r2z-iut062t4k7.gz"},"Patterns":null},"locales-all.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"14az9ncp01-rqk0e89iag.gz"},"Patterns":null},"main.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ey2v5ykhzf-f5a8k8yevm.gz"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p48dfmn1xu-z6m2drqoda.gz"},"Patterns":null},"main.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c4dgt3ysif-iqs1wm3w3a.gz"},"Patterns":null},"main.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7ary9g61wv-eje42taxwu.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"icheck-bootstrap":{"Children":{"icheck-bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/icheck-bootstrap/icheck-bootstrap.css"},"Patterns":null},"icheck-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css"},"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/icheck-bootstrap/LICENSE"},"Patterns":null},"icheck-bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xaqr3nriun-c05dtb4atq.gz"},"Patterns":null},"icheck-bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mclt0cfvhm-b9byvgbhie.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"inputmask":{"Children":{"inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/inputmask/inputmask.js"},"Patterns":null},"inputmask.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/inputmask/inputmask.min.js"},"Patterns":null},"jquery.inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/inputmask/jquery.inputmask.js"},"Patterns":null},"jquery.inputmask.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/inputmask/jquery.inputmask.min.js"},"Patterns":null},"inputmask.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0lcfd8rdf4-w2xhszpom0.gz"},"Patterns":null},"inputmask.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3pfawii3i0-wg2grr17rp.gz"},"Patterns":null},"jquery.inputmask.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uddduevphr-6pmpproqwq.gz"},"Patterns":null},"jquery.inputmask.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yp6ruy95wx-jb7vt9j6c3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ion-rangeslider":{"Children":{"css":{"Children":{"ion.rangeSlider.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.css"},"Patterns":null},"ion.rangeSlider.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ion-rangeslider/css/ion.rangeSlider.min.css"},"Patterns":null},"ion.rangeSlider.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6vn52zb6q2-8rg1sqmcjt.gz"},"Patterns":null},"ion.rangeSlider.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ha5cdbq2z5-z8o3sif4ix.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"ion.rangeSlider.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.js"},"Patterns":null},"ion.rangeSlider.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ion-rangeslider/js/ion.rangeSlider.min.js"},"Patterns":null},"ion.rangeSlider.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vlllybfemz-to5e2twoki.gz"},"Patterns":null},"ion.rangeSlider.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pfshlgmc3z-r67c8v5kpt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"License.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/ion-rangeslider/License.md"},"Patterns":null},"License.md.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qm18jfhy90-mmwvcieyov.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-knob":{"Children":{"jquery.knob.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-knob/jquery.knob.min.js"},"Patterns":null},"jquery.knob.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3dnuqfe80p-dqbrtol5ml.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-mapael":{"Children":{"jquery.mapael.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/jquery.mapael.js"},"Patterns":null},"jquery.mapael.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/jquery.mapael.min.js"},"Patterns":null},"maps":{"Children":{"france_departments.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/france_departments.js"},"Patterns":null},"france_departments.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/france_departments.min.js"},"Patterns":null},"README.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/README.txt"},"Patterns":null},"usa_states.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/usa_states.js"},"Patterns":null},"usa_states.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/usa_states.min.js"},"Patterns":null},"world_countries.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries.js"},"Patterns":null},"world_countries.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries.min.js"},"Patterns":null},"world_countries_mercator.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries_mercator.js"},"Patterns":null},"world_countries_mercator.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries_mercator.min.js"},"Patterns":null},"world_countries_miller.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries_miller.js"},"Patterns":null},"world_countries_miller.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mapael/maps/world_countries_miller.min.js"},"Patterns":null},"france_departments.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t9r58vh29w-qm73d3ji1w.gz"},"Patterns":null},"france_departments.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uwxst0wx2e-ew28i41z54.gz"},"Patterns":null},"README.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lqntxs1jcu-asmx3zi1yl.gz"},"Patterns":null},"usa_states.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"thcuski8wn-i306vj9ms7.gz"},"Patterns":null},"usa_states.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xev3c7bbeu-evheh7gc71.gz"},"Patterns":null},"world_countries.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7fny0p3crg-na84ddf1hf.gz"},"Patterns":null},"world_countries.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cppjp3nfrn-3pgsx1su6z.gz"},"Patterns":null},"world_countries_mercator.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zz90qse73m-otc80bznzm.gz"},"Patterns":null},"world_countries_mercator.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i5e19u2080-0wt6v5yzm9.gz"},"Patterns":null},"world_countries_miller.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dvvu119qx4-d0slb2wqlq.gz"},"Patterns":null},"world_countries_miller.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hy4uk91j6n-9uk4n2qco1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery.mapael.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a74s6p47e4-chp26x1ehg.gz"},"Patterns":null},"jquery.mapael.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"58l7jhvws6-uvuexah0ge.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-mousewheel":{"Children":{"jquery.mousewheel.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mousewheel/jquery.mousewheel.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-mousewheel/LICENSE.txt"},"Patterns":null},"jquery.mousewheel.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"170rhtage5-89s8jitsue.gz"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"79007muqpk-n64vwjqr8v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui":{"Children":{"images":{"Children":{"ui-icons_444444_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_444444_256x240.png"},"Patterns":null},"ui-icons_555555_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_555555_256x240.png"},"Patterns":null},"ui-icons_777620_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_777620_256x240.png"},"Patterns":null},"ui-icons_777777_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_777777_256x240.png"},"Patterns":null},"ui-icons_cc0000_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png"},"Patterns":null},"ui-icons_ffffff_256x240.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.css"},"Patterns":null},"jquery-ui.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.js"},"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.min.css"},"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.min.js"},"Patterns":null},"jquery-ui.structure.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.structure.css"},"Patterns":null},"jquery-ui.structure.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.structure.min.css"},"Patterns":null},"jquery-ui.theme.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.theme.css"},"Patterns":null},"jquery-ui.theme.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/jquery-ui.theme.min.css"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-ui/LICENSE.txt"},"Patterns":null},"jquery-ui.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j46v6fnha8-hn1acl2vk2.gz"},"Patterns":null},"jquery-ui.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mrfk8bvt2q-rc8fhhobti.gz"},"Patterns":null},"jquery-ui.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"crw0lq0abx-6tvjqji63q.gz"},"Patterns":null},"jquery-ui.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xk2btoflbr-r5thwmdy4j.gz"},"Patterns":null},"jquery-ui.structure.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qwmhu1pbqc-5y82qukdf7.gz"},"Patterns":null},"jquery-ui.structure.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z9hsmsczwc-j68t7c56lp.gz"},"Patterns":null},"jquery-ui.theme.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nzpo1xlxsn-dzjireh2hs.gz"},"Patterns":null},"jquery-ui.theme.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9z2070rl1d-ja4qyjixxa.gz"},"Patterns":null},"LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"95v53ln3rg-xc9d5xw7m0.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/jquery.validate.min.js"},"Patterns":null},"localization":{"Children":{"messages_ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ar.js"},"Patterns":null},"messages_ar.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ar.min.js"},"Patterns":null},"messages_az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_az.js"},"Patterns":null},"messages_az.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_az.min.js"},"Patterns":null},"messages_bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_bg.js"},"Patterns":null},"messages_bg.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_bg.min.js"},"Patterns":null},"messages_bn_BD.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_bn_BD.js"},"Patterns":null},"messages_bn_BD.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_bn_BD.min.js"},"Patterns":null},"messages_ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ca.js"},"Patterns":null},"messages_ca.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ca.min.js"},"Patterns":null},"messages_cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_cs.js"},"Patterns":null},"messages_cs.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_cs.min.js"},"Patterns":null},"messages_da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_da.js"},"Patterns":null},"messages_da.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_da.min.js"},"Patterns":null},"messages_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_de.js"},"Patterns":null},"messages_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_de.min.js"},"Patterns":null},"messages_el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_el.js"},"Patterns":null},"messages_el.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_el.min.js"},"Patterns":null},"messages_es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es.js"},"Patterns":null},"messages_es.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es.min.js"},"Patterns":null},"messages_es_AR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es_AR.js"},"Patterns":null},"messages_es_AR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es_AR.min.js"},"Patterns":null},"messages_es_PE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es_PE.js"},"Patterns":null},"messages_es_PE.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_es_PE.min.js"},"Patterns":null},"messages_et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_et.js"},"Patterns":null},"messages_et.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_et.min.js"},"Patterns":null},"messages_eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_eu.js"},"Patterns":null},"messages_eu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_eu.min.js"},"Patterns":null},"messages_fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fa.js"},"Patterns":null},"messages_fa.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fa.min.js"},"Patterns":null},"messages_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fi.js"},"Patterns":null},"messages_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fi.min.js"},"Patterns":null},"messages_fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fr.js"},"Patterns":null},"messages_fr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_fr.min.js"},"Patterns":null},"messages_ge.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ge.js"},"Patterns":null},"messages_ge.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ge.min.js"},"Patterns":null},"messages_gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_gl.js"},"Patterns":null},"messages_gl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_gl.min.js"},"Patterns":null},"messages_he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_he.js"},"Patterns":null},"messages_he.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_he.min.js"},"Patterns":null},"messages_hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hr.js"},"Patterns":null},"messages_hr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hr.min.js"},"Patterns":null},"messages_hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hu.js"},"Patterns":null},"messages_hu.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hu.min.js"},"Patterns":null},"messages_hy_AM.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hy_AM.js"},"Patterns":null},"messages_hy_AM.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_hy_AM.min.js"},"Patterns":null},"messages_id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_id.js"},"Patterns":null},"messages_id.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_id.min.js"},"Patterns":null},"messages_is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_is.js"},"Patterns":null},"messages_is.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_is.min.js"},"Patterns":null},"messages_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_it.js"},"Patterns":null},"messages_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_it.min.js"},"Patterns":null},"messages_ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ja.js"},"Patterns":null},"messages_ja.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ja.min.js"},"Patterns":null},"messages_ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ka.js"},"Patterns":null},"messages_ka.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ka.min.js"},"Patterns":null},"messages_kk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_kk.js"},"Patterns":null},"messages_kk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_kk.min.js"},"Patterns":null},"messages_ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ko.js"},"Patterns":null},"messages_ko.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ko.min.js"},"Patterns":null},"messages_lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_lt.js"},"Patterns":null},"messages_lt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_lt.min.js"},"Patterns":null},"messages_lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_lv.js"},"Patterns":null},"messages_lv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_lv.min.js"},"Patterns":null},"messages_mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_mk.js"},"Patterns":null},"messages_mk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_mk.min.js"},"Patterns":null},"messages_my.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_my.js"},"Patterns":null},"messages_my.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_my.min.js"},"Patterns":null},"messages_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_nl.js"},"Patterns":null},"messages_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_nl.min.js"},"Patterns":null},"messages_no.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_no.js"},"Patterns":null},"messages_no.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_no.min.js"},"Patterns":null},"messages_pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pl.js"},"Patterns":null},"messages_pl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pl.min.js"},"Patterns":null},"messages_pt_BR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pt_BR.js"},"Patterns":null},"messages_pt_BR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pt_BR.min.js"},"Patterns":null},"messages_pt_PT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pt_PT.js"},"Patterns":null},"messages_pt_PT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_pt_PT.min.js"},"Patterns":null},"messages_ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ro.js"},"Patterns":null},"messages_ro.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ro.min.js"},"Patterns":null},"messages_ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ru.js"},"Patterns":null},"messages_ru.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ru.min.js"},"Patterns":null},"messages_sd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sd.js"},"Patterns":null},"messages_sd.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sd.min.js"},"Patterns":null},"messages_si.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_si.js"},"Patterns":null},"messages_si.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_si.min.js"},"Patterns":null},"messages_sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sk.js"},"Patterns":null},"messages_sk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sk.min.js"},"Patterns":null},"messages_sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sl.js"},"Patterns":null},"messages_sl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sl.min.js"},"Patterns":null},"messages_sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sr.js"},"Patterns":null},"messages_sr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sr.min.js"},"Patterns":null},"messages_sr_lat.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sr_lat.js"},"Patterns":null},"messages_sr_lat.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sr_lat.min.js"},"Patterns":null},"messages_sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sv.js"},"Patterns":null},"messages_sv.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_sv.min.js"},"Patterns":null},"messages_th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_th.js"},"Patterns":null},"messages_th.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_th.min.js"},"Patterns":null},"messages_tj.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_tj.js"},"Patterns":null},"messages_tj.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_tj.min.js"},"Patterns":null},"messages_tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_tr.js"},"Patterns":null},"messages_tr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_tr.min.js"},"Patterns":null},"messages_uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_uk.js"},"Patterns":null},"messages_uk.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_uk.min.js"},"Patterns":null},"messages_ur.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ur.js"},"Patterns":null},"messages_ur.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_ur.min.js"},"Patterns":null},"messages_vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_vi.js"},"Patterns":null},"messages_vi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_vi.min.js"},"Patterns":null},"messages_zh.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_zh.js"},"Patterns":null},"messages_zh.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_zh.min.js"},"Patterns":null},"messages_zh_TW.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_zh_TW.js"},"Patterns":null},"messages_zh_TW.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/messages_zh_TW.min.js"},"Patterns":null},"methods_de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_de.js"},"Patterns":null},"methods_de.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_de.min.js"},"Patterns":null},"methods_es_CL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_es_CL.js"},"Patterns":null},"methods_es_CL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_es_CL.min.js"},"Patterns":null},"methods_fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_fi.js"},"Patterns":null},"methods_fi.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_fi.min.js"},"Patterns":null},"methods_it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_it.js"},"Patterns":null},"methods_it.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_it.min.js"},"Patterns":null},"methods_nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_nl.js"},"Patterns":null},"methods_nl.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_nl.min.js"},"Patterns":null},"methods_pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_pt.js"},"Patterns":null},"methods_pt.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery-validation/localization/methods_pt.min.js"},"Patterns":null},"messages_ar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6ixizepsde-r8qe0m4dxu.gz"},"Patterns":null},"messages_ar.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p9unxfcl5k-tqdpo0bnzv.gz"},"Patterns":null},"messages_az.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cbkoeq906u-kykp5n0hdz.gz"},"Patterns":null},"messages_az.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4xa2oi2bs2-hyduua47rk.gz"},"Patterns":null},"messages_bg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8xncjpuuar-k9lo1i3hka.gz"},"Patterns":null},"messages_bg.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"33b2kt2b76-91pw6v2u8f.gz"},"Patterns":null},"messages_bn_BD.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rynvzsvk8f-7wwmyxgz7g.gz"},"Patterns":null},"messages_bn_BD.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x5sy4myumv-6izjqltbzz.gz"},"Patterns":null},"messages_ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4haac2xelm-s84is66ac2.gz"},"Patterns":null},"messages_ca.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0lj4z3am1l-k91l5npyps.gz"},"Patterns":null},"messages_cs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0dteo5f401-h3pnxvpis9.gz"},"Patterns":null},"messages_cs.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dd46svigsg-64e44g77ze.gz"},"Patterns":null},"messages_da.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7715b8qsgv-hl366ttjx3.gz"},"Patterns":null},"messages_da.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9xjhaetft4-27azuqeifi.gz"},"Patterns":null},"messages_de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fgevfenrud-loj7wvf52y.gz"},"Patterns":null},"messages_de.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bnc92ijzax-pcipiu00ts.gz"},"Patterns":null},"messages_el.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ndj4zxw9no-qqu14emzpz.gz"},"Patterns":null},"messages_el.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xs90a5zfl5-pepxsizzcj.gz"},"Patterns":null},"messages_es.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wswlwtc1ly-h12iko7ftt.gz"},"Patterns":null},"messages_es.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p5ku22tcuy-47jzphig0g.gz"},"Patterns":null},"messages_es_AR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gq9vz46thx-8qc6eszbrp.gz"},"Patterns":null},"messages_es_AR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6jmfxfm33b-kc8y7jttz4.gz"},"Patterns":null},"messages_es_PE.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"em12q7m3e3-v1kiv9r72f.gz"},"Patterns":null},"messages_es_PE.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"esf2ph737x-y16jku7qx9.gz"},"Patterns":null},"messages_et.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5stl1p0hnp-igjdu1dp7w.gz"},"Patterns":null},"messages_et.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fg4xoi6051-rzbrs8h7h6.gz"},"Patterns":null},"messages_eu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"thgs1qa2sn-6kpd4ayjf7.gz"},"Patterns":null},"messages_eu.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xsdh9hv5yg-lvsee9tpue.gz"},"Patterns":null},"messages_fa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yexhqv6q8d-wopte5ltn3.gz"},"Patterns":null},"messages_fa.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u82r8p5wnh-u60huvpyhx.gz"},"Patterns":null},"messages_fi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"or4fhcd1cl-es5m6k79fy.gz"},"Patterns":null},"messages_fi.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2pl5ve7ssu-ssml0qprof.gz"},"Patterns":null},"messages_fr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l8j6l9i8zb-gq2c77q85y.gz"},"Patterns":null},"messages_fr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"drsozvs6zk-c60lh8z0fq.gz"},"Patterns":null},"messages_ge.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2t0y3ax12a-9by8lo7rpx.gz"},"Patterns":null},"messages_ge.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"97xsxanaqf-327nt2ysbd.gz"},"Patterns":null},"messages_gl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"76qr04skk4-owfod1uvuk.gz"},"Patterns":null},"messages_gl.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4i3x23lw53-77io32a98w.gz"},"Patterns":null},"messages_he.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o5tku4bqem-26ozc826dc.gz"},"Patterns":null},"messages_he.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugj44a143d-pos9f1q2xy.gz"},"Patterns":null},"messages_hr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"74ovuoyful-9yie26m2y6.gz"},"Patterns":null},"messages_hr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z7qil7ojrc-ut7a37kl02.gz"},"Patterns":null},"messages_hu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1lmax554du-55v3ltdbgw.gz"},"Patterns":null},"messages_hu.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"agyk7xpmwp-gdt0jzsyyr.gz"},"Patterns":null},"messages_hy_AM.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"is016mupt4-1zopoype1v.gz"},"Patterns":null},"messages_hy_AM.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"53ujva8jli-plsxlx8y8y.gz"},"Patterns":null},"messages_id.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yi2yxgya85-4tv8xn3vw2.gz"},"Patterns":null},"messages_id.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cjyapzt6st-wvs98wlhfe.gz"},"Patterns":null},"messages_is.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5z85wkfblm-8mtblk34sy.gz"},"Patterns":null},"messages_is.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dmzvukyqs9-zbn7aezild.gz"},"Patterns":null},"messages_it.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9dcthhzawr-habkgop76v.gz"},"Patterns":null},"messages_it.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gj64kxxkvi-f8rod5avtk.gz"},"Patterns":null},"messages_ja.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v40w8sc61f-zp577d2wnz.gz"},"Patterns":null},"messages_ja.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2f93jt691p-dlh93ljkej.gz"},"Patterns":null},"messages_ka.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5gzzbygy5g-tcbwb8p2oz.gz"},"Patterns":null},"messages_ka.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p0mp2bzowy-72nu1ji7v8.gz"},"Patterns":null},"messages_kk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zd4yo4c83v-vyqhnkn1ms.gz"},"Patterns":null},"messages_kk.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a3kvz2x7mf-rxjjyhpfvd.gz"},"Patterns":null},"messages_ko.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wpiazsr61h-calpjmq1bf.gz"},"Patterns":null},"messages_ko.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4dbasn4mht-3p2ut90w09.gz"},"Patterns":null},"messages_lt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xzfrq25plm-h87g0ks4tz.gz"},"Patterns":null},"messages_lt.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"164ygjfz9h-rdf552frfi.gz"},"Patterns":null},"messages_lv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"frwmf1kivv-lu4aaxkd1m.gz"},"Patterns":null},"messages_lv.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"be718s94p8-ej8y578ign.gz"},"Patterns":null},"messages_mk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ydihy971jf-yi6misf6lb.gz"},"Patterns":null},"messages_mk.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a5xzg212yy-ogcw3vbpk9.gz"},"Patterns":null},"messages_my.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rr73msx6wj-lpb34r9809.gz"},"Patterns":null},"messages_my.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xebg35qtth-ar6ecz4epo.gz"},"Patterns":null},"messages_nl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"to9foywbwo-nepyw8l5ew.gz"},"Patterns":null},"messages_nl.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"latqdn5h23-otpwlehnsh.gz"},"Patterns":null},"messages_no.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cu23d049fk-qalhzmhefw.gz"},"Patterns":null},"messages_no.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xy3oab00rv-oyonhqzdz9.gz"},"Patterns":null},"messages_pl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q5jrrtxz32-jxlth9r3o1.gz"},"Patterns":null},"messages_pl.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"44d1sng3js-0bs87gr9gx.gz"},"Patterns":null},"messages_pt_BR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"us1rhjh4x5-4d5eq1cjl8.gz"},"Patterns":null},"messages_pt_BR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fa34hpbxud-iz18k3071x.gz"},"Patterns":null},"messages_pt_PT.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bn282jtyto-gk5zxetrr2.gz"},"Patterns":null},"messages_pt_PT.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o12v4oi0at-5n3aawue4d.gz"},"Patterns":null},"messages_ro.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4pxlv3i3ys-ago6xmtrp5.gz"},"Patterns":null},"messages_ro.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i807zn3vo7-4dmkssrcsm.gz"},"Patterns":null},"messages_ru.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fsxt8baq4o-w4o0ldhl6d.gz"},"Patterns":null},"messages_ru.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dtpvbi5e4x-yv1wle7inz.gz"},"Patterns":null},"messages_sd.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i0022s1ivc-s76yuwawej.gz"},"Patterns":null},"messages_sd.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wurn9buvqf-lfm5r966fd.gz"},"Patterns":null},"messages_si.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ux5dsfxz35-x79ipvn7le.gz"},"Patterns":null},"messages_si.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a5lhk57wex-69rqxy0ngi.gz"},"Patterns":null},"messages_sk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k3l3opluhj-iunqw247dg.gz"},"Patterns":null},"messages_sk.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8xlgaasig1-8chydu07js.gz"},"Patterns":null},"messages_sl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6v6u9ljs3c-e0lja5j2ir.gz"},"Patterns":null},"messages_sl.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ctfwdb9i6b-ha1qzcx65l.gz"},"Patterns":null},"messages_sr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gctti0g0al-58ur1407x9.gz"},"Patterns":null},"messages_sr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ales8ebud2-xht256fs5s.gz"},"Patterns":null},"messages_sr_lat.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aawjvff0dq-1wd0w8rjox.gz"},"Patterns":null},"messages_sr_lat.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"agyn6qrom8-5ijpt3sd8y.gz"},"Patterns":null},"messages_sv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lb35yvejrn-9055e45v3y.gz"},"Patterns":null},"messages_sv.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oixqccvpez-mzoq5ovmw4.gz"},"Patterns":null},"messages_th.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hlgvm1l14k-aehc14qnu3.gz"},"Patterns":null},"messages_th.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dukle6i2g8-u9mdi6yy6f.gz"},"Patterns":null},"messages_tj.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xsjcslrrao-gbwiohnh5x.gz"},"Patterns":null},"messages_tj.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7u05z3ger5-dciy14anm3.gz"},"Patterns":null},"messages_tr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"txn6lv0xcj-g2oy61a6u9.gz"},"Patterns":null},"messages_tr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7yip5jnw7i-db363k26vx.gz"},"Patterns":null},"messages_uk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"turs0sca8w-pjhrttmwp6.gz"},"Patterns":null},"messages_uk.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9kd85zftep-kq2pyzi6r0.gz"},"Patterns":null},"messages_ur.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b5cvks8635-q21isbddxl.gz"},"Patterns":null},"messages_ur.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4cr4s40nst-5kvovnp309.gz"},"Patterns":null},"messages_vi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sarx6t83yu-xv8gwt9qal.gz"},"Patterns":null},"messages_vi.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zbaxdocyxp-grvvtd979o.gz"},"Patterns":null},"messages_zh.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f1r8hizcqs-tqg95bub2v.gz"},"Patterns":null},"messages_zh.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tvb439x6mg-pq65gvpspk.gz"},"Patterns":null},"messages_zh_TW.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"acdpdyqbwm-k0rsfd5zpx.gz"},"Patterns":null},"messages_zh_TW.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ijfdtylqni-12syxpjm3r.gz"},"Patterns":null},"methods_de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v0a4yxhzi5-t4n9iggmu2.gz"},"Patterns":null},"methods_de.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1m8w9eug3o-ndfh3lzrud.gz"},"Patterns":null},"methods_es_CL.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m6u1ah3v13-mhq5x1add5.gz"},"Patterns":null},"methods_es_CL.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ipw5l7ci0b-rdxeuqmxiq.gz"},"Patterns":null},"methods_fi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gv7rykifpm-qbw80k7qra.gz"},"Patterns":null},"methods_fi.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6tjlvzgy3y-h6ohelmcs7.gz"},"Patterns":null},"methods_it.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qg9f1szx3z-b16ae72i8u.gz"},"Patterns":null},"methods_it.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"19aojz3oob-rdxeuqmxiq.gz"},"Patterns":null},"methods_nl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jjivmftg5i-ah0xlkcu72.gz"},"Patterns":null},"methods_nl.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gz93euzvts-6pbjomyyi3.gz"},"Patterns":null},"methods_pt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"itbor2quhu-vp5jhy9xwq.gz"},"Patterns":null},"methods_pt.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1vngueujot-wsa6gklf1x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"additional-methods.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ma1j3o56vb-967dw1pkt2.gz"},"Patterns":null},"additional-methods.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"noy0n4vnr3-9kbpzt1kt8.gz"},"Patterns":null},"jquery.validate.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fhxu3gl4na-xxgkuezd9q.gz"},"Patterns":null},"jquery.validate.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7w1hgrizbs-shik8kp3s2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.min.map"},"Patterns":null},"jquery.slim.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.slim.js"},"Patterns":null},"jquery.slim.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.slim.min.js"},"Patterns":null},"jquery.slim.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jquery/jquery.slim.min.map"},"Patterns":null},"jquery.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"herpy0669z-7s2n0ol71w.gz"},"Patterns":null},"jquery.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b225l82q4w-ehgnz7f14e.gz"},"Patterns":null},"jquery.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zibmip7e3a-jtmsrjfkua.gz"},"Patterns":null},"jquery.slim.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hinl7c2nd9-gkye80tccc.gz"},"Patterns":null},"jquery.slim.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"56209p0prc-jkr59enbf0.gz"},"Patterns":null},"jquery.slim.min.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ip90szms2e-l5o0ocrnlv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jqvmap":{"Children":{"jquery.vmap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/jquery.vmap.js"},"Patterns":null},"jquery.vmap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/jquery.vmap.min.js"},"Patterns":null},"jqvmap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/jqvmap.css"},"Patterns":null},"jqvmap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/jqvmap.min.css"},"Patterns":null},"maps":{"Children":{"continents":{"Children":{"jquery.vmap.africa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.africa.js"},"Patterns":null},"jquery.vmap.asia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.asia.js"},"Patterns":null},"jquery.vmap.australia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.australia.js"},"Patterns":null},"jquery.vmap.europe.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.europe.js"},"Patterns":null},"jquery.vmap.north-america.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.north-america.js"},"Patterns":null},"jquery.vmap.south-america.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/continents/jquery.vmap.south-america.js"},"Patterns":null},"jquery.vmap.africa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ds0q3qv6kb-h4wsvih9iy.gz"},"Patterns":null},"jquery.vmap.asia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c6kelrpwxj-edo5i5xfay.gz"},"Patterns":null},"jquery.vmap.australia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"urasg7ynqz-5iu8n8c9xx.gz"},"Patterns":null},"jquery.vmap.europe.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2bt3lpqrc4-3igx467lbz.gz"},"Patterns":null},"jquery.vmap.north-america.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"noxc15biqe-tsitc247sr.gz"},"Patterns":null},"jquery.vmap.south-america.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u8uhkev9fw-jatv90hu42.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery.vmap.algeria.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.algeria.js"},"Patterns":null},"jquery.vmap.argentina.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.argentina.js"},"Patterns":null},"jquery.vmap.brazil.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.brazil.js"},"Patterns":null},"jquery.vmap.canada.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.canada.js"},"Patterns":null},"jquery.vmap.croatia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.croatia.js"},"Patterns":null},"jquery.vmap.europe.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.europe.js"},"Patterns":null},"jquery.vmap.france.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.france.js"},"Patterns":null},"jquery.vmap.germany.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.germany.js"},"Patterns":null},"jquery.vmap.greece.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.greece.js"},"Patterns":null},"jquery.vmap.indonesia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.indonesia.js"},"Patterns":null},"jquery.vmap.iran.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.iran.js"},"Patterns":null},"jquery.vmap.iraq.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.iraq.js"},"Patterns":null},"jquery.vmap.new_regions_france.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.new_regions_france.js"},"Patterns":null},"jquery.vmap.russia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.russia.js"},"Patterns":null},"jquery.vmap.serbia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.serbia.js"},"Patterns":null},"jquery.vmap.tunisia.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.tunisia.js"},"Patterns":null},"jquery.vmap.turkey.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.turkey.js"},"Patterns":null},"jquery.vmap.ukraine.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.ukraine.js"},"Patterns":null},"jquery.vmap.usa.counties.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.usa.counties.js"},"Patterns":null},"jquery.vmap.usa.districts.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.usa.districts.js"},"Patterns":null},"jquery.vmap.usa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js"},"Patterns":null},"jquery.vmap.world.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jqvmap/maps/jquery.vmap.world.js"},"Patterns":null},"jquery.vmap.algeria.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gs0cz28718-2w477ewnpv.gz"},"Patterns":null},"jquery.vmap.argentina.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"845tkucqha-df1xlrui5o.gz"},"Patterns":null},"jquery.vmap.brazil.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vvz67ar79w-qk3fm0xufm.gz"},"Patterns":null},"jquery.vmap.canada.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nyk00pg92y-5auzc5u8p3.gz"},"Patterns":null},"jquery.vmap.croatia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ckkejbmqt9-ywrzid3dop.gz"},"Patterns":null},"jquery.vmap.europe.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jskv21lop5-dufgjcdual.gz"},"Patterns":null},"jquery.vmap.france.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3i2vukjl1k-zp8jwov6hi.gz"},"Patterns":null},"jquery.vmap.germany.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"er8mzdvhbq-0nk8sqdizr.gz"},"Patterns":null},"jquery.vmap.greece.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"29xi65xkuf-7w0s4r1x72.gz"},"Patterns":null},"jquery.vmap.indonesia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5jdrw01y7k-zcvy7z56av.gz"},"Patterns":null},"jquery.vmap.iran.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gp00sbis8b-okcp6184am.gz"},"Patterns":null},"jquery.vmap.iraq.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7yu8kirq8c-djkn2d4f8o.gz"},"Patterns":null},"jquery.vmap.new_regions_france.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"do4i3i0gy8-li0kpsui98.gz"},"Patterns":null},"jquery.vmap.russia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e24yz8cn31-hv24q0mzyu.gz"},"Patterns":null},"jquery.vmap.serbia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6fln63ngj0-72nhiwrr8b.gz"},"Patterns":null},"jquery.vmap.tunisia.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h9u2q2rkb2-veudbjz142.gz"},"Patterns":null},"jquery.vmap.turkey.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s4yk7hgibt-hoak3rk8nk.gz"},"Patterns":null},"jquery.vmap.ukraine.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y1eydzd030-cis72k0riw.gz"},"Patterns":null},"jquery.vmap.usa.counties.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2h32ovaoya-odr2quo9tf.gz"},"Patterns":null},"jquery.vmap.usa.districts.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a3bp3jo08i-rfughjn0g5.gz"},"Patterns":null},"jquery.vmap.usa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4ddfleb8kf-932076n98y.gz"},"Patterns":null},"jquery.vmap.world.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mdi3e47v0p-gw5jrxdqm3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery.vmap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zdstrkat12-n0jiz5rp1u.gz"},"Patterns":null},"jquery.vmap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vaj5x5lgmk-09ipkzh929.gz"},"Patterns":null},"jqvmap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vej3uwvo7v-dfvnexcb4p.gz"},"Patterns":null},"jqvmap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v4u3zx2f5h-03ecg3l3mu.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jsgrid":{"Children":{"demos":{"Children":{"db.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/demos/db.js"},"Patterns":null},"db.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"shf1ik4v9u-g3cug6bgtw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"i18n":{"Children":{"jsgrid-de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-de.js"},"Patterns":null},"jsgrid-es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-es.js"},"Patterns":null},"jsgrid-fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-fr.js"},"Patterns":null},"jsgrid-he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-he.js"},"Patterns":null},"jsgrid-ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-ja.js"},"Patterns":null},"jsgrid-ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-ka.js"},"Patterns":null},"jsgrid-pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-pl.js"},"Patterns":null},"jsgrid-pt-br.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-pt-br.js"},"Patterns":null},"jsgrid-pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-pt.js"},"Patterns":null},"jsgrid-ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-ru.js"},"Patterns":null},"jsgrid-tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-tr.js"},"Patterns":null},"jsgrid-zh-cn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-zh-cn.js"},"Patterns":null},"jsgrid-zh-tw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/i18n/jsgrid-zh-tw.js"},"Patterns":null},"jsgrid-de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4m4bfgy7f7-0b2tnu0ezq.gz"},"Patterns":null},"jsgrid-es.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pj4j73pqks-63on7zemsv.gz"},"Patterns":null},"jsgrid-fr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i6yqpzgj4d-73rl6bg1vt.gz"},"Patterns":null},"jsgrid-he.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"358q10f2ve-vfemabt470.gz"},"Patterns":null},"jsgrid-ja.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"19si0xqskc-s8c6r3ie7g.gz"},"Patterns":null},"jsgrid-ka.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p7yi4rkpgz-v14yz2pwr0.gz"},"Patterns":null},"jsgrid-pl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4mt1nyo68d-9jd13zllys.gz"},"Patterns":null},"jsgrid-pt-br.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cxwzuchb15-06zzi3pzaq.gz"},"Patterns":null},"jsgrid-pt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"adzfe0s593-ftl0f5u5k4.gz"},"Patterns":null},"jsgrid-ru.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xmujwpzst1-adh6eoyh4f.gz"},"Patterns":null},"jsgrid-tr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b4fnhv7fcv-fy8k4y881a.gz"},"Patterns":null},"jsgrid-zh-cn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fplyu3ltm3-pno782qzgv.gz"},"Patterns":null},"jsgrid-zh-tw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zjna8t5390-k311nttbdw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jsgrid-theme.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid-theme.css"},"Patterns":null},"jsgrid-theme.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid-theme.min.css"},"Patterns":null},"jsgrid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid.css"},"Patterns":null},"jsgrid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid.js"},"Patterns":null},"jsgrid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid.min.css"},"Patterns":null},"jsgrid.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jsgrid/jsgrid.min.js"},"Patterns":null},"jsgrid-theme.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"77gijr0ufe-wiowsacqam.gz"},"Patterns":null},"jsgrid-theme.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pi6bpic6e5-90gncfcsi4.gz"},"Patterns":null},"jsgrid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2aeoyb2oes-mvepktcb3d.gz"},"Patterns":null},"jsgrid.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ai1lvjl8k2-td3w432wk3.gz"},"Patterns":null},"jsgrid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0y3zwot9lx-8tng65mg8r.gz"},"Patterns":null},"jsgrid.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mlm2depqry-2wmd8x6icd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"jszip":{"Children":{"jszip.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jszip/jszip.js"},"Patterns":null},"jszip.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/jszip/jszip.min.js"},"Patterns":null},"jszip.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2cst038aeb-l09tglgp3h.gz"},"Patterns":null},"jszip.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dgji72q63g-kur62z0kyx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"moment":{"Children":{"locales.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locales.js"},"Patterns":null},"locales.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locales.min.js"},"Patterns":null},"locales.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locales.min.js.map"},"Patterns":null},"locale":{"Children":{"af.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/af.js"},"Patterns":null},"ar-dz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-dz.js"},"Patterns":null},"ar-kw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-kw.js"},"Patterns":null},"ar-ly.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-ly.js"},"Patterns":null},"ar-ma.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-ma.js"},"Patterns":null},"ar-sa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-sa.js"},"Patterns":null},"ar-tn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar-tn.js"},"Patterns":null},"ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ar.js"},"Patterns":null},"az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/az.js"},"Patterns":null},"be.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/be.js"},"Patterns":null},"bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bg.js"},"Patterns":null},"bm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bm.js"},"Patterns":null},"bn-bd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bn-bd.js"},"Patterns":null},"bn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bn.js"},"Patterns":null},"bo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bo.js"},"Patterns":null},"br.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/br.js"},"Patterns":null},"bs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/bs.js"},"Patterns":null},"ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ca.js"},"Patterns":null},"cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/cs.js"},"Patterns":null},"cv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/cv.js"},"Patterns":null},"cy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/cy.js"},"Patterns":null},"da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/da.js"},"Patterns":null},"de-at.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/de-at.js"},"Patterns":null},"de-ch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/de-ch.js"},"Patterns":null},"de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/de.js"},"Patterns":null},"dv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/dv.js"},"Patterns":null},"el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/el.js"},"Patterns":null},"en-au.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-au.js"},"Patterns":null},"en-ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-ca.js"},"Patterns":null},"en-gb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-gb.js"},"Patterns":null},"en-ie.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-ie.js"},"Patterns":null},"en-il.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-il.js"},"Patterns":null},"en-in.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-in.js"},"Patterns":null},"en-nz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-nz.js"},"Patterns":null},"en-SG.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/en-SG.js"},"Patterns":null},"eo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/eo.js"},"Patterns":null},"es-do.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/es-do.js"},"Patterns":null},"es-mx.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/es-mx.js"},"Patterns":null},"es-us.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/es-us.js"},"Patterns":null},"es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/es.js"},"Patterns":null},"et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/et.js"},"Patterns":null},"eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/eu.js"},"Patterns":null},"fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fa.js"},"Patterns":null},"fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fi.js"},"Patterns":null},"fil.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fil.js"},"Patterns":null},"fo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fo.js"},"Patterns":null},"fr-ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fr-ca.js"},"Patterns":null},"fr-ch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fr-ch.js"},"Patterns":null},"fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fr.js"},"Patterns":null},"fy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/fy.js"},"Patterns":null},"ga.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ga.js"},"Patterns":null},"gd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/gd.js"},"Patterns":null},"gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/gl.js"},"Patterns":null},"gom-deva.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/gom-deva.js"},"Patterns":null},"gom-latn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/gom-latn.js"},"Patterns":null},"gu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/gu.js"},"Patterns":null},"he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/he.js"},"Patterns":null},"hi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/hi.js"},"Patterns":null},"hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/hr.js"},"Patterns":null},"hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/hu.js"},"Patterns":null},"hy-am.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/hy-am.js"},"Patterns":null},"id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/id.js"},"Patterns":null},"is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/is.js"},"Patterns":null},"it-ch.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/it-ch.js"},"Patterns":null},"it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/it.js"},"Patterns":null},"ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ja.js"},"Patterns":null},"jv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/jv.js"},"Patterns":null},"ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ka.js"},"Patterns":null},"kk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/kk.js"},"Patterns":null},"km.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/km.js"},"Patterns":null},"kn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/kn.js"},"Patterns":null},"ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ko.js"},"Patterns":null},"ku.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ku.js"},"Patterns":null},"ky.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ky.js"},"Patterns":null},"lb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/lb.js"},"Patterns":null},"lo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/lo.js"},"Patterns":null},"lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/lt.js"},"Patterns":null},"lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/lv.js"},"Patterns":null},"me.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/me.js"},"Patterns":null},"mi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/mi.js"},"Patterns":null},"mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/mk.js"},"Patterns":null},"ml.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ml.js"},"Patterns":null},"mn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/mn.js"},"Patterns":null},"mr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/mr.js"},"Patterns":null},"ms-my.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ms-my.js"},"Patterns":null},"ms.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ms.js"},"Patterns":null},"mt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/mt.js"},"Patterns":null},"my.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/my.js"},"Patterns":null},"nb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/nb.js"},"Patterns":null},"ne.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ne.js"},"Patterns":null},"nl-be.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/nl-be.js"},"Patterns":null},"nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/nl.js"},"Patterns":null},"nn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/nn.js"},"Patterns":null},"oc-lnc.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/oc-lnc.js"},"Patterns":null},"pa-in.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/pa-in.js"},"Patterns":null},"pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/pl.js"},"Patterns":null},"pt-br.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/pt-br.js"},"Patterns":null},"pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/pt.js"},"Patterns":null},"ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ro.js"},"Patterns":null},"ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ru.js"},"Patterns":null},"sd.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sd.js"},"Patterns":null},"se.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/se.js"},"Patterns":null},"si.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/si.js"},"Patterns":null},"sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sk.js"},"Patterns":null},"sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sl.js"},"Patterns":null},"sq.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sq.js"},"Patterns":null},"sr-cyrl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sr-cyrl.js"},"Patterns":null},"sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sr.js"},"Patterns":null},"ss.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ss.js"},"Patterns":null},"sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sv.js"},"Patterns":null},"sw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/sw.js"},"Patterns":null},"ta.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ta.js"},"Patterns":null},"te.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/te.js"},"Patterns":null},"tet.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tet.js"},"Patterns":null},"tg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tg.js"},"Patterns":null},"th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/th.js"},"Patterns":null},"tk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tk.js"},"Patterns":null},"tl-ph.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tl-ph.js"},"Patterns":null},"tlh.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tlh.js"},"Patterns":null},"tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tr.js"},"Patterns":null},"tzl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tzl.js"},"Patterns":null},"tzm-latn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tzm-latn.js"},"Patterns":null},"tzm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/tzm.js"},"Patterns":null},"ug-cn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ug-cn.js"},"Patterns":null},"uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/uk.js"},"Patterns":null},"ur.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/ur.js"},"Patterns":null},"uz-latn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/uz-latn.js"},"Patterns":null},"uz.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/uz.js"},"Patterns":null},"vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/vi.js"},"Patterns":null},"x-pseudo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/x-pseudo.js"},"Patterns":null},"yo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/yo.js"},"Patterns":null},"zh-cn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/zh-cn.js"},"Patterns":null},"zh-hk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/zh-hk.js"},"Patterns":null},"zh-mo.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/zh-mo.js"},"Patterns":null},"zh-tw.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/locale/zh-tw.js"},"Patterns":null},"af.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5zybgbkucd-sroxo46lzw.gz"},"Patterns":null},"ar-dz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jcfvf9igz6-iznlc45p9d.gz"},"Patterns":null},"ar-kw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k012g921ei-fqu34235u5.gz"},"Patterns":null},"ar-ly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1292wyua3y-qpotaj1zdj.gz"},"Patterns":null},"ar-ma.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2443yy5x8k-cmswgz0q06.gz"},"Patterns":null},"ar-sa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gw8i03jppb-v8156cz7n8.gz"},"Patterns":null},"ar-tn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8ypcu6nivz-5ydc678mba.gz"},"Patterns":null},"ar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cedl9cids2-qkg6shscxa.gz"},"Patterns":null},"az.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c6bhg7gtbd-phmaerdnmv.gz"},"Patterns":null},"be.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vtxqh3qu95-rdxqmy8827.gz"},"Patterns":null},"bg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u64w3ye90c-oxv55uheo1.gz"},"Patterns":null},"bm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wz6j1f6c8i-z611vny62a.gz"},"Patterns":null},"bn-bd.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o57y5319ki-yyly0yzkb2.gz"},"Patterns":null},"bn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8asf556oz8-x0vqgjaw78.gz"},"Patterns":null},"bo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h5pkeadiwf-l7nnjezbtn.gz"},"Patterns":null},"br.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rs8hy8zkgb-jqqwrltbnk.gz"},"Patterns":null},"bs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3gymki3zig-4ca921yw8k.gz"},"Patterns":null},"ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nayf63afp6-elys5kam5t.gz"},"Patterns":null},"cs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6p7p5sm5tw-p7abm3zrn6.gz"},"Patterns":null},"cv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"69ffwsway1-pthsutqat7.gz"},"Patterns":null},"cy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qmjq9a8alc-bwwvcu9m2t.gz"},"Patterns":null},"da.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"raolkgcpiv-nyjljb9857.gz"},"Patterns":null},"de-at.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bgdr4ekgzh-8py1pqao09.gz"},"Patterns":null},"de-ch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4etj18eqzb-fkx4xf97ja.gz"},"Patterns":null},"de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i1cfp4l39f-s8hndkt2qg.gz"},"Patterns":null},"dv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l6pmf5rvcj-c4nxqrxz2r.gz"},"Patterns":null},"el.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ohy4hb0g90-1qmm1ghdqm.gz"},"Patterns":null},"en-au.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0008dckonl-lg4t5lpli6.gz"},"Patterns":null},"en-ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lzcum6brbc-wb83bsefl9.gz"},"Patterns":null},"en-gb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7l0czef91y-jlfc66ru0f.gz"},"Patterns":null},"en-ie.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j6b81pfnop-2qqm9pdpky.gz"},"Patterns":null},"en-il.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7ddyhmg3c5-avutla8y34.gz"},"Patterns":null},"en-in.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"893i4h44w0-fz5uhjiksz.gz"},"Patterns":null},"en-nz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"obchbjfc5h-50vx1ymj02.gz"},"Patterns":null},"en-SG.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gmdw363nz9-7pxp5mvgjq.gz"},"Patterns":null},"eo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lrdrrq5xmx-lnrtssb74j.gz"},"Patterns":null},"es-do.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"58bwf1r4dn-0maedcc5oz.gz"},"Patterns":null},"es-mx.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dh8dw26piz-vgf4c8eerc.gz"},"Patterns":null},"es-us.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kj7x6crjoh-imnuotmftn.gz"},"Patterns":null},"es.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2dyi3pct6y-9hx95zn97l.gz"},"Patterns":null},"et.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kekfdqrhtx-b00b57vkoe.gz"},"Patterns":null},"eu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xz919oilfd-qlkus2h880.gz"},"Patterns":null},"fa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tnamqb3x2u-z46lj65flu.gz"},"Patterns":null},"fi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"60bdoep332-acyzjfihoh.gz"},"Patterns":null},"fil.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ra9jgiq52w-rw170kchsx.gz"},"Patterns":null},"fo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e6pbbvv75v-xxcfh7wi91.gz"},"Patterns":null},"fr-ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ru6kmgurvh-fljpml5ndc.gz"},"Patterns":null},"fr-ch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7vfrqj5wbo-idh46dj4tw.gz"},"Patterns":null},"fr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"94l61e3l0v-k95z8apj4s.gz"},"Patterns":null},"fy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mxjkugpi0p-wrzo98eekm.gz"},"Patterns":null},"ga.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lboqggxv0p-01mr3fv2ok.gz"},"Patterns":null},"gd.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w46y5bhuw3-zd1cxn252l.gz"},"Patterns":null},"gl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gsjxa81j3l-n3zq3q2e9j.gz"},"Patterns":null},"gom-deva.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gkjbcurmkj-b2toxeyv5p.gz"},"Patterns":null},"gom-latn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sbj1n4c7lc-p3rugy5fxn.gz"},"Patterns":null},"gu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c6m5lq2fea-ya6ncn057i.gz"},"Patterns":null},"he.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"69kgxdf3cl-e2nbyghv58.gz"},"Patterns":null},"hi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"96x7zs0wrq-uzfb8lbzcw.gz"},"Patterns":null},"hr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"czlifrjvqx-t4y62zoawb.gz"},"Patterns":null},"hu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g8a2w2249f-vjwi45m119.gz"},"Patterns":null},"hy-am.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u6vhn95don-yer1rmenf9.gz"},"Patterns":null},"id.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"746zvf66mq-rafj96vvw6.gz"},"Patterns":null},"is.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5wpukod8bo-a85b1s1tp9.gz"},"Patterns":null},"it-ch.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k05t93yzgq-i0wirmgs0d.gz"},"Patterns":null},"it.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qvf7ifwqvy-xo44l9znw3.gz"},"Patterns":null},"ja.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"txktmg1r6l-iit906d0p4.gz"},"Patterns":null},"jv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m4s34n0apv-ogzyjvnp8p.gz"},"Patterns":null},"ka.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rql916rm7f-ngridoyuue.gz"},"Patterns":null},"kk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fommrcc2zx-rviycdbeeq.gz"},"Patterns":null},"km.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ul69qkuc84-uyc8px6cj5.gz"},"Patterns":null},"kn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hm9qx6azum-kup67x4vdw.gz"},"Patterns":null},"ko.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wa5thwfnrd-ed5ektm7my.gz"},"Patterns":null},"ku.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a9fuky6n8g-xdgsib9kui.gz"},"Patterns":null},"ky.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ue4vdy57h1-c9eray075c.gz"},"Patterns":null},"lb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1lopgzhxd5-schbg9pa4r.gz"},"Patterns":null},"lo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fqtdhhoykr-rnrqdjoslg.gz"},"Patterns":null},"lt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qbppidyem0-n1soahnnai.gz"},"Patterns":null},"lv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fkbhqbtbth-sidpwaga46.gz"},"Patterns":null},"me.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ju540dy2vy-2mqtnjy5cp.gz"},"Patterns":null},"mi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugjhg4o8cz-lo4dphjicz.gz"},"Patterns":null},"mk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8g73ymwrqt-ntdtk1ar3b.gz"},"Patterns":null},"ml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dy3x8e89be-p222sb075u.gz"},"Patterns":null},"mn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p5visv2wcz-222ueelfk6.gz"},"Patterns":null},"mr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0491tle542-l8yi58696b.gz"},"Patterns":null},"ms-my.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iya4sc6072-ylipjf7bhg.gz"},"Patterns":null},"ms.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"et9k0haot8-lfji5isjzw.gz"},"Patterns":null},"mt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zgrpve2sp5-qjt22ugeo7.gz"},"Patterns":null},"my.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ih8hjkzx5w-fj68skr0q6.gz"},"Patterns":null},"nb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dqv1a7t0fg-pfh96v5uq9.gz"},"Patterns":null},"ne.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i729ah6nsh-8ept1bns04.gz"},"Patterns":null},"nl-be.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jgmpp7tpgb-9xv1hak5yd.gz"},"Patterns":null},"nl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"my97lb7zwl-zqui0u6yc0.gz"},"Patterns":null},"nn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i9288jvox3-bw47jws7v4.gz"},"Patterns":null},"oc-lnc.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3apuf8j1na-c100yv5xic.gz"},"Patterns":null},"pa-in.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jc7cw77ysn-ol5oewxw77.gz"},"Patterns":null},"pl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m4qal4yoa3-zm3h6geaj5.gz"},"Patterns":null},"pt-br.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bm0b8abbv6-uv1doka9fv.gz"},"Patterns":null},"pt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vlf321jou3-q28zzlh9si.gz"},"Patterns":null},"ro.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8ujsximld0-t7zh2l02pa.gz"},"Patterns":null},"ru.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9llran91n6-p2ys4rfx1l.gz"},"Patterns":null},"sd.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rb1sgt8s8x-uipyf7o8ap.gz"},"Patterns":null},"se.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ra3rso71uh-2vnkbmjinq.gz"},"Patterns":null},"si.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"72sl8mwcwt-0qglnhsoc0.gz"},"Patterns":null},"sk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h2k8tskzo1-o7nlok538e.gz"},"Patterns":null},"sl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"794xd03r8g-0u6i8n33nt.gz"},"Patterns":null},"sq.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x7rcmnlm6i-5zxsvxniux.gz"},"Patterns":null},"sr-cyrl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sb6iul4thm-8qn1z2ho33.gz"},"Patterns":null},"sr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5uakgourrq-3iicz5jdyf.gz"},"Patterns":null},"ss.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c6c6khsswj-dlgj5mtohc.gz"},"Patterns":null},"sv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"07fu8aza41-i9marryunm.gz"},"Patterns":null},"sw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bjx9xe0tzo-fr4fv63t2t.gz"},"Patterns":null},"ta.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"geeoaks002-x61txh4tbi.gz"},"Patterns":null},"te.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ofl5fmab4l-eevqcn6m3n.gz"},"Patterns":null},"tet.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vie5k3w2kq-1806v86hzl.gz"},"Patterns":null},"tg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"id8w1a19r5-bjsa3qc3y1.gz"},"Patterns":null},"th.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3qlyrqn4qf-1f57vbs7yh.gz"},"Patterns":null},"tk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iw8attwavw-lzrn55m5nl.gz"},"Patterns":null},"tl-ph.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y84xowphj3-l2r6nqc23o.gz"},"Patterns":null},"tlh.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j6lgclieff-wt42ffk3tj.gz"},"Patterns":null},"tr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gv6othc2i3-15sj16gofs.gz"},"Patterns":null},"tzl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g902rmpt2z-g4uam6xxut.gz"},"Patterns":null},"tzm-latn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bddbt9fyir-jff9232uo2.gz"},"Patterns":null},"tzm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rw5d4ci66h-vw128qq7rd.gz"},"Patterns":null},"ug-cn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hdh19ttzni-24428yls4e.gz"},"Patterns":null},"uk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"av38jt83co-gtpmy80tbm.gz"},"Patterns":null},"ur.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oxkk0qfsed-dqgg6p7umr.gz"},"Patterns":null},"uz-latn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mkhxv9fglm-ogplcs1fca.gz"},"Patterns":null},"uz.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7squ6yvxcy-pve1ctn5wd.gz"},"Patterns":null},"vi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w6n302p49p-wlob9m9tyk.gz"},"Patterns":null},"x-pseudo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yvr5e9xpzn-zu81krwxzk.gz"},"Patterns":null},"yo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s8dhpz78wu-u2lxiwqzwv.gz"},"Patterns":null},"zh-cn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hhhd2zpaew-z7kxxx7cjt.gz"},"Patterns":null},"zh-hk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qfdswom916-466gl9osmx.gz"},"Patterns":null},"zh-mo.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wys38j6y7r-1g8gi3z9vl.gz"},"Patterns":null},"zh-tw.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9xc3xytol6-i7js0jp4vl.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"moment-with-locales.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/moment-with-locales.js"},"Patterns":null},"moment-with-locales.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/moment-with-locales.min.js"},"Patterns":null},"moment-with-locales.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/moment-with-locales.min.js.map"},"Patterns":null},"moment.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/moment.min.js"},"Patterns":null},"moment.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/moment/moment.min.js.map"},"Patterns":null},"locales.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y7evsk8gue-2o9fil0j07.gz"},"Patterns":null},"locales.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3wyqn1ubg8-8lsh37gv5v.gz"},"Patterns":null},"locales.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h24yjsnhrk-o8rwhxgoy1.gz"},"Patterns":null},"moment-with-locales.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"03yar89m0q-v19656uxj9.gz"},"Patterns":null},"moment-with-locales.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yaj2zqwwvw-pckwy8f8bq.gz"},"Patterns":null},"moment-with-locales.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"44klodetvu-gpasel4uls.gz"},"Patterns":null},"moment.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yyj1bcc824-sllhac5ssy.gz"},"Patterns":null},"moment.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ovibr02wf9-67cicg9cke.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"overlayScrollbars":{"Children":{"css":{"Children":{"OverlayScrollbars.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.css"},"Patterns":null},"OverlayScrollbars.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css"},"Patterns":null},"OverlayScrollbars.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xzqlpua1y1-6thttmxi5z.gz"},"Patterns":null},"OverlayScrollbars.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8ulvm1ue2c-bxbrhz20oz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"jquery.overlayScrollbars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.js"},"Patterns":null},"jquery.overlayScrollbars.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"},"Patterns":null},"OverlayScrollbars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.js"},"Patterns":null},"OverlayScrollbars.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/overlayScrollbars/js/OverlayScrollbars.min.js"},"Patterns":null},"jquery.overlayScrollbars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v867pqq8cq-thp15whr2y.gz"},"Patterns":null},"jquery.overlayScrollbars.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"829xgb20m5-qyl06g05cg.gz"},"Patterns":null},"OverlayScrollbars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w0w424uyol-i69pn04yn8.gz"},"Patterns":null},"OverlayScrollbars.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"brdbdg01a7-wry6lkzr4q.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"pace-progress":{"Children":{"pace.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/pace.js"},"Patterns":null},"pace.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/pace.min.js"},"Patterns":null},"themes":{"Children":{"black":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/black/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gkrkj9ibib-1g4o761mx7.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"50abkz968l-r9ns05kg22.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cg75456xmw-430rtqkn9n.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b1xxp98m9m-e9a7g7nuvv.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u7vfd3fopp-99v15xyb0b.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c4zavmxtls-x2x55cy07o.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yjhfjgua65-05na8ps389.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2l337w41vw-tvv5spkm0g.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"506ebr8dea-binacksyei.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"16cz3e6uj9-qrvg32hniu.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0xyqrm6hcd-jbe9s87e3z.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3gwkz1ttpt-5s46x5tgkb.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tkoq1s67ti-bm9p9nrilu.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kb908f0ia9-iz7ar6cnb5.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lr76r0ff2o-fnewr6lvdp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"blue":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/blue/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qd6mdgn7kt-eh50rbtfsj.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iht1pc9n82-x49u4k8hff.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h8pz51s4o8-fq22iaz3v5.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1swzmcrb5f-0l7p102ndw.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mt0akroybx-y8t5qu2ff4.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zw75pyil0y-olgbxqei5c.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8swd4erzsu-5qstf2125h.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1spxbqe1qu-smib456psm.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eum5qysps8-m6v1vok2pt.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"47mf1yvhpp-yoxgs06w6l.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yjn0mzhcbs-b5uec31taw.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"blkswag2pe-ezdbitp007.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7wcyndlhv9-s3v692kvg3.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"so3ynm38tk-tfbbf19b5a.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zcnkpmja32-i9vx5k7ido.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"green":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/green/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dxkvy6csrv-ohd2868qz3.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5h82tfsde8-7szp0ihct7.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6249tcsqv9-oz2web8sfa.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r5hicz14e1-nl0bb1b6va.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m9lz7vaid1-ohxani2spl.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o1mguql8hg-2ynyf1nz80.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8rsy9k9fnm-ktp5peu65e.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wmsppi6rba-g6dbbo0dv2.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lxqoc1snsl-elta7q4fvp.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tfcpap2x99-xwwxccfa1f.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zptkty5k1s-vk4o1jmavk.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uzzqj64ary-eexqg5udoz.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xdfcwuiixz-954rryv1qz.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gpk5a7s8pl-x7a8qluuvx.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a9r0m0waft-humk4u9y4i.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"orange":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/orange/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xd4o6ah8jt-asdnaxbyju.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5q2x2kbqt0-5v6vk47cr9.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mwiaeunnfk-5ur7sbfgk0.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3oe4rl41li-8e25gy8fee.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8g9bed5o3p-7gwjnwxnm6.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4a9xidyxog-343t8f0slt.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"arecysjjgi-zx5mg1c7ib.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8sqqat4jy-helxktw8ty.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mkvxgch6ij-itrjgizwgu.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a4xe3n3mra-9u6596xzmb.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w9wv1a4v3e-43d8r5o863.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u6yqvcdp1i-qyfik218lg.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"me09mek1p4-5nfic1wrvt.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ni6j03t3n6-58lehhio3m.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wixlyprpdm-mkmbf99o6v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pink":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/pink/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pvo6m87h1t-ypdzixfcj4.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2n6j6j933n-0d0p0lausm.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"44bmj488wd-8w55fm4d5v.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dzc41e9hzb-x1fk9x08fe.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4zmbl8qu2n-gbd9z4wttv.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bsevk69q96-ru090woc4g.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"54pbj4b85m-kc6j8bbp1z.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wf80fyt46d-20tn27l2zh.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1m73f1dfi4-ffy8nuq76j.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yjt3dabcg7-78kgwcpktu.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"behh8emogx-5h8w9tku46.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v8vuptw01m-6p32vs9p3n.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"547zqoq7hq-e171lhlski.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0p1ii7eo1s-wyvunw1szs.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"frynhs5stn-oka6yqdhex.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"purple":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/purple/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0iw9my3jei-biky9njteu.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nx7y4c6yw8-691af365kt.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9368wrzfe8-bhkmyd62i3.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mlz39z1je0-9exfkvjt5l.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hybo6khhek-ty11e9h10s.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"onlg4dv7e3-rqstohn14r.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"23owszrmz8-dwxoejbs6b.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x5tvspiok0-lxggcica3n.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0gq3brs1xy-ov24lxh0r7.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vqtnfdu1au-efti4krxe6.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lc1sbuap30-4beplt01p7.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q0rwidyepo-8r9gke02lv.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w6h3kbyau0-fzfe8r6day.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xhbcn01hqb-iuksnu3gsr.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"niuf2np65y-hhgeydy9s7.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"red":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/red/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xk0mw59fkh-kllqmxo47j.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b15tigjrth-64pnx18dai.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wnr5wq1gmf-44mb2ora2s.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"woccwuzobq-9hhf054ulj.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugdddghwys-ss93ue5uai.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d87jvbikxn-2i5vk8j55t.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8jeuvym627-ip3ba5pq1o.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6ex9f9g4cd-kfj2taz2fj.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"imsstl9vo7-kctwtfv8lb.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ro8chjtfcj-f53hw4rmri.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8541s8m8eq-5hsoepag47.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ioc03a3s6b-8y5hl2p3le.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q2mjooorxh-brjezf06vo.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4qtln7sqx1-bcp1hunczv.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wjsx2xf5wp-7f8m7ww97w.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"silver":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/silver/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bs1ebc4lm4-f09p88fd5v.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2fdytulbkt-q5rq5e9gu8.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3wb00sz37t-lj6e0jui1x.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0cypokrk4b-1d1q322h0q.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jjzcima87v-vtbelvzxy6.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rro4cgacpo-3guk0qf5qs.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"slowc0nnxf-dh1t7imumq.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2zr72xaa7x-vmw9az89ph.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"muwcjm5gu5-y4a66i9deu.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kruvhy8gao-uhfw0fsjam.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k8a37fgqhk-jrnqq5sogk.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u1bywjiyn7-znak47o531.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e8qog9pqbj-udc4vqab7c.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5evtsyat6u-vcrdebd43z.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lf8ozv0hsj-fb39nhzccr.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"white":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/white/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"usrh1xz6ro-v2v0luoc7a.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"07u987pfrt-gcnr1ggfzb.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e0y3ih0apy-2qz3emkwsq.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s8to3cc5gl-9jdpd47qi9.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0bwxwz66la-prbasp09yi.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7i7t6yynit-ca7jegywp4.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w34xp3womw-dshh1noa0f.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gs6qzv9olu-fkogxer89m.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4kzbd1x99n-dez9bs2ugd.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"we3yx3i76y-sio0g6y9g9.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"smn99hg4dj-s4b7s6dxrh.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ikzavmduqk-dl2ari1q2r.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o6l6anlsn6-gbcemx1n9d.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"52p3ic2zet-mfzgfren58.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2y5tkv9sez-3j1jwx0gsb.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"yellow":{"Children":{"pace-theme-barber-shop.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-barber-shop.css"},"Patterns":null},"pace-theme-big-counter.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-big-counter.css"},"Patterns":null},"pace-theme-bounce.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-bounce.css"},"Patterns":null},"pace-theme-center-atom.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-atom.css"},"Patterns":null},"pace-theme-center-circle.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-circle.css"},"Patterns":null},"pace-theme-center-radar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-radar.css"},"Patterns":null},"pace-theme-center-simple.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-center-simple.css"},"Patterns":null},"pace-theme-corner-indicator.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-corner-indicator.css"},"Patterns":null},"pace-theme-fill-left.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-fill-left.css"},"Patterns":null},"pace-theme-flash.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-flash.css"},"Patterns":null},"pace-theme-flat-top.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-flat-top.css"},"Patterns":null},"pace-theme-loading-bar.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-loading-bar.css"},"Patterns":null},"pace-theme-mac-osx.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-mac-osx.css"},"Patterns":null},"pace-theme-material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-material.css"},"Patterns":null},"pace-theme-minimal.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pace-progress/themes/yellow/pace-theme-minimal.css"},"Patterns":null},"pace-theme-barber-shop.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j8wk6imnmn-rb0tsuifz6.gz"},"Patterns":null},"pace-theme-big-counter.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q975yqngj7-gl1j2e5k9j.gz"},"Patterns":null},"pace-theme-bounce.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3b3pakeds7-pblbzmcouc.gz"},"Patterns":null},"pace-theme-center-atom.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o1et66dvsy-35c1hfbia7.gz"},"Patterns":null},"pace-theme-center-circle.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f1zt6xo3hx-hat8qtl3j0.gz"},"Patterns":null},"pace-theme-center-radar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dj5qnp10fq-btxohujij8.gz"},"Patterns":null},"pace-theme-center-simple.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"to90l84esu-sl0j7f26lt.gz"},"Patterns":null},"pace-theme-corner-indicator.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e8un5wrhua-fduvebhvrk.gz"},"Patterns":null},"pace-theme-fill-left.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xpqw15y99v-sk5r34v1nu.gz"},"Patterns":null},"pace-theme-flash.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ablg6dga5h-pq3df21c1l.gz"},"Patterns":null},"pace-theme-flat-top.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9j7xwd4p40-5dew3h3mck.gz"},"Patterns":null},"pace-theme-loading-bar.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xrrv7yv0ps-jthvzzs2ww.gz"},"Patterns":null},"pace-theme-mac-osx.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cfhvizt1t0-49mqt5gyjx.gz"},"Patterns":null},"pace-theme-material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9qrrnw5alm-mvmxpoo4nl.gz"},"Patterns":null},"pace-theme-minimal.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"quxsxbbihp-35br9po70u.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"pace.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gpq8meqivx-7i6l6aphdh.gz"},"Patterns":null},"pace.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a79auuwiq1-8265woqc2v.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"pdfmake":{"Children":{"pdfmake.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pdfmake/pdfmake.js"},"Patterns":null},"pdfmake.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pdfmake/pdfmake.js.map"},"Patterns":null},"pdfmake.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pdfmake/pdfmake.min.js"},"Patterns":null},"pdfmake.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pdfmake/pdfmake.min.js.map"},"Patterns":null},"vfs_fonts.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/pdfmake/vfs_fonts.js"},"Patterns":null},"pdfmake.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3pdkau5g6j-e8hg2qiiis.gz"},"Patterns":null},"pdfmake.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v13qx4jq38-7kkcgljm2t.gz"},"Patterns":null},"pdfmake.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xymgn80qe2-5v6y9z29v2.gz"},"Patterns":null},"pdfmake.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1e49999jtn-odx0sewq4l.gz"},"Patterns":null},"vfs_fonts.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pkpek171gl-o1osp6xxrh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"popper":{"Children":{"esm":{"Children":{"popper-utils.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper-utils.js"},"Patterns":null},"popper-utils.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper-utils.js.map"},"Patterns":null},"popper-utils.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper-utils.min.js"},"Patterns":null},"popper-utils.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper-utils.min.js.map"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper.js"},"Patterns":null},"popper.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper.js.map"},"Patterns":null},"popper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper.min.js"},"Patterns":null},"popper.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/esm/popper.min.js.map"},"Patterns":null},"popper-utils.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3s46apgbal-t8t3bwrz9x.gz"},"Patterns":null},"popper-utils.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"txsvtk2s4a-idii5le9l1.gz"},"Patterns":null},"popper-utils.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m5qzdjri1l-vnx6put9sz.gz"},"Patterns":null},"popper-utils.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q9uf51lz0x-evbhz7x31a.gz"},"Patterns":null},"popper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"biskyg4x19-1u6ye34jgi.gz"},"Patterns":null},"popper.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zhqk2b6xr6-varmjyipxb.gz"},"Patterns":null},"popper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4ja1cmqthj-ngpxfelrq1.gz"},"Patterns":null},"popper.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"teexqwp26j-me3o5ic45c.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"popper-utils.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper-utils.js"},"Patterns":null},"popper-utils.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper-utils.js.map"},"Patterns":null},"popper-utils.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper-utils.min.js"},"Patterns":null},"popper-utils.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper-utils.min.js.map"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper.js"},"Patterns":null},"popper.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper.js.map"},"Patterns":null},"popper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper.min.js"},"Patterns":null},"popper.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/popper.min.js.map"},"Patterns":null},"umd":{"Children":{"popper-utils.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper-utils.js"},"Patterns":null},"popper-utils.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper-utils.js.map"},"Patterns":null},"popper-utils.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper-utils.min.js"},"Patterns":null},"popper-utils.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper-utils.min.js.map"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper.js"},"Patterns":null},"popper.js.flow":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper.js.flow"},"Patterns":null},"popper.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper.js.map"},"Patterns":null},"popper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper.min.js"},"Patterns":null},"popper.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/popper/umd/popper.min.js.map"},"Patterns":null},"popper-utils.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z8hlp8ity2-02ku35hmlb.gz"},"Patterns":null},"popper-utils.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d9d4isd2y0-uggng918zj.gz"},"Patterns":null},"popper-utils.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2j8jkbtybu-etjj7hewk3.gz"},"Patterns":null},"popper-utils.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eg4ttpkxz3-ku6rjpl5cm.gz"},"Patterns":null},"popper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ikfd75l8hb-rj4wubmn7z.gz"},"Patterns":null},"popper.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ihw6riz5hf-gtr1h1f6xu.gz"},"Patterns":null},"popper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6ar95tsip8-64x6yzlrpy.gz"},"Patterns":null},"popper.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"epozykbxhz-fujyqwjeqa.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"popper-utils.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ftp0h6eow9-o476pe8pbr.gz"},"Patterns":null},"popper-utils.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vkgsllx81l-l3s559wkyt.gz"},"Patterns":null},"popper-utils.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sixghurqe3-n6wuanslaa.gz"},"Patterns":null},"popper-utils.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xpmt7t9vlq-2mqd73wydm.gz"},"Patterns":null},"popper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"inqzdxfgdw-cnqxsv05bf.gz"},"Patterns":null},"popper.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ypphaj8mv4-ioqez2bgqu.gz"},"Patterns":null},"popper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8s5xf9quru-34byls3j4i.gz"},"Patterns":null},"popper.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aoj26ujhix-fmnj87jpto.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"raphael":{"Children":{"Gruntfile.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/Gruntfile.js"},"Patterns":null},"license.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/license.txt"},"Patterns":null},"raphael.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/raphael.js"},"Patterns":null},"raphael.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/raphael.min.js"},"Patterns":null},"raphael.no-deps.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/raphael.no-deps.js"},"Patterns":null},"raphael.no-deps.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/raphael/raphael.no-deps.min.js"},"Patterns":null},"Gruntfile.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qiyef8fqyz-yb720dne5o.gz"},"Patterns":null},"license.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"faagudfr6o-zc9t1srimp.gz"},"Patterns":null},"raphael.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1azfzxwrv2-8rz8o64qg9.gz"},"Patterns":null},"raphael.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2rocbtptey-vxznce0rg7.gz"},"Patterns":null},"raphael.no-deps.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rwgorus8za-202vjdavko.gz"},"Patterns":null},"raphael.no-deps.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hx18aff4tq-pwtvhk1buy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"select2-bootstrap4-theme":{"Children":{"select2-bootstrap4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.css"},"Patterns":null},"select2-bootstrap4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2-bootstrap4-theme/select2-bootstrap4.min.css"},"Patterns":null},"select2-bootstrap4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c4cnumatue-lafwm2jy9z.gz"},"Patterns":null},"select2-bootstrap4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"95e7zouslh-qg9hcnh6yl.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"select2":{"Children":{"css":{"Children":{"select2.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/css/select2.css"},"Patterns":null},"select2.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/css/select2.min.css"},"Patterns":null},"select2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ond3auxcsi-hb1ug0nc9n.gz"},"Patterns":null},"select2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qd9w0o9mrs-2b36fav156.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"i18n":{"Children":{"af.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/af.js"},"Patterns":null},"ar.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ar.js"},"Patterns":null},"az.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/az.js"},"Patterns":null},"bg.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/bg.js"},"Patterns":null},"bn.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/bn.js"},"Patterns":null},"bs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/bs.js"},"Patterns":null},"build.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/build.txt"},"Patterns":null},"ca.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ca.js"},"Patterns":null},"cs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/cs.js"},"Patterns":null},"da.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/da.js"},"Patterns":null},"de.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/de.js"},"Patterns":null},"dsb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/dsb.js"},"Patterns":null},"el.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/el.js"},"Patterns":null},"en.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/en.js"},"Patterns":null},"es.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/es.js"},"Patterns":null},"et.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/et.js"},"Patterns":null},"eu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/eu.js"},"Patterns":null},"fa.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/fa.js"},"Patterns":null},"fi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/fi.js"},"Patterns":null},"fr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/fr.js"},"Patterns":null},"gl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/gl.js"},"Patterns":null},"he.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/he.js"},"Patterns":null},"hi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/hi.js"},"Patterns":null},"hr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/hr.js"},"Patterns":null},"hsb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/hsb.js"},"Patterns":null},"hu.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/hu.js"},"Patterns":null},"hy.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/hy.js"},"Patterns":null},"id.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/id.js"},"Patterns":null},"is.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/is.js"},"Patterns":null},"it.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/it.js"},"Patterns":null},"ja.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ja.js"},"Patterns":null},"ka.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ka.js"},"Patterns":null},"km.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/km.js"},"Patterns":null},"ko.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ko.js"},"Patterns":null},"lt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/lt.js"},"Patterns":null},"lv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/lv.js"},"Patterns":null},"mk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/mk.js"},"Patterns":null},"ms.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ms.js"},"Patterns":null},"nb.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/nb.js"},"Patterns":null},"ne.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ne.js"},"Patterns":null},"nl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/nl.js"},"Patterns":null},"pl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/pl.js"},"Patterns":null},"ps.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ps.js"},"Patterns":null},"pt-BR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/pt-BR.js"},"Patterns":null},"pt.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/pt.js"},"Patterns":null},"ro.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ro.js"},"Patterns":null},"ru.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/ru.js"},"Patterns":null},"sk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sk.js"},"Patterns":null},"sl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sl.js"},"Patterns":null},"sq.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sq.js"},"Patterns":null},"sr-Cyrl.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sr-Cyrl.js"},"Patterns":null},"sr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sr.js"},"Patterns":null},"sv.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/sv.js"},"Patterns":null},"th.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/th.js"},"Patterns":null},"tk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/tk.js"},"Patterns":null},"tr.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/tr.js"},"Patterns":null},"uk.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/uk.js"},"Patterns":null},"vi.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/vi.js"},"Patterns":null},"zh-CN.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/zh-CN.js"},"Patterns":null},"zh-TW.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/i18n/zh-TW.js"},"Patterns":null},"af.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"esn1lp7vpy-2zcn3z8kon.gz"},"Patterns":null},"ar.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zj6skq54n1-iiaqvpxolq.gz"},"Patterns":null},"az.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ybdfrslu94-w1lbhtuskh.gz"},"Patterns":null},"bg.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s0x7hx76bh-6vq77dq91n.gz"},"Patterns":null},"bn.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2te7w0frjc-1uabpj18mf.gz"},"Patterns":null},"bs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w8ql0mt3ye-fq5886noo3.gz"},"Patterns":null},"build.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0a2mxgvht8-nrpastnkn6.gz"},"Patterns":null},"ca.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fwsyy1r76f-54zzfyn9cc.gz"},"Patterns":null},"cs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fxno4wb8wt-jj88p9grn2.gz"},"Patterns":null},"da.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7ndq3heo8c-oystkcg6jb.gz"},"Patterns":null},"de.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sioyzt2ign-1jwrkvecqn.gz"},"Patterns":null},"dsb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tsuuqywpk6-4k2ywce86c.gz"},"Patterns":null},"el.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p0ob3zgxi5-h5licrz1zb.gz"},"Patterns":null},"en.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p8sl6lmaap-wipmfhr2g0.gz"},"Patterns":null},"es.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ef5oa37s4l-jdrzxdqvdt.gz"},"Patterns":null},"et.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5110z5mshp-x57dvjbykn.gz"},"Patterns":null},"eu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uncr8htklg-22w06kaf3h.gz"},"Patterns":null},"fa.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yzgsocvw2p-kwth1fn47b.gz"},"Patterns":null},"fi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m04v300y42-7ofhjf3fke.gz"},"Patterns":null},"fr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"y43rv9w5f0-vrrsowb13n.gz"},"Patterns":null},"gl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wctsfx6gxd-afp367alxq.gz"},"Patterns":null},"he.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xvcngbmn5s-wadteiyvg9.gz"},"Patterns":null},"hi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hcp1m3ddp5-b6jhtpdtyn.gz"},"Patterns":null},"hr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rjearadi1i-wfnuqz9r1y.gz"},"Patterns":null},"hsb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h5lnwafpv2-vd6knyki9y.gz"},"Patterns":null},"hu.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5p5nio3j5r-g5c5gkz7b6.gz"},"Patterns":null},"hy.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fhifhi9nxv-pza2b464ll.gz"},"Patterns":null},"id.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7q7xjz35w9-3tfe8i475g.gz"},"Patterns":null},"is.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"di8ywgv105-bepl738lkr.gz"},"Patterns":null},"it.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q7lga3z238-5es3yjrtjv.gz"},"Patterns":null},"ja.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g0weh7ijrr-uw1g6n7iyy.gz"},"Patterns":null},"ka.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4inbhovphv-lvs344cug9.gz"},"Patterns":null},"km.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o35thw633x-ouebagmgxv.gz"},"Patterns":null},"ko.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2hzcaxoqks-qsb2rmuo8t.gz"},"Patterns":null},"lt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5ad8wrh57k-7xfo6g5x1n.gz"},"Patterns":null},"lv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jbmxmo0wn0-0wrb8hg9ra.gz"},"Patterns":null},"mk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"axzfnw4zv9-4fay9wlqw7.gz"},"Patterns":null},"ms.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3pwjt4eav7-t0ocp7vnp5.gz"},"Patterns":null},"nb.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gaaoo2bkol-zilgbruiai.gz"},"Patterns":null},"ne.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"odjhj2pzot-xy6wxhlefz.gz"},"Patterns":null},"nl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h8wct8mv93-9dqmb8bnit.gz"},"Patterns":null},"pl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tfa7sbnrk5-0eancdsgzo.gz"},"Patterns":null},"ps.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"orph44mjuj-10iwy0ldtt.gz"},"Patterns":null},"pt-BR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ks0385lokc-55ml1bnt3l.gz"},"Patterns":null},"pt.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x3wy8hff0m-wpl12fn2jb.gz"},"Patterns":null},"ro.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j0d3pgwmg6-p2267ay87h.gz"},"Patterns":null},"ru.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b11xyzl1vo-x47hej4lor.gz"},"Patterns":null},"sk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p5gc7o59lw-c2mzpq8hox.gz"},"Patterns":null},"sl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gkcp73g7m6-ug4v7bknlc.gz"},"Patterns":null},"sq.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cujir87fjb-l9gpxrvzxd.gz"},"Patterns":null},"sr-Cyrl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sxcj5wfjo2-0bamui60cf.gz"},"Patterns":null},"sr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wtmgex5wfk-pc7hhjl4is.gz"},"Patterns":null},"sv.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t5ecsnroki-cy9bqub3s3.gz"},"Patterns":null},"th.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3eovekitel-ldb65ns8n6.gz"},"Patterns":null},"tk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6uvc5wl0d6-f2c15tbi6v.gz"},"Patterns":null},"tr.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4j404bksem-p99zc5ekca.gz"},"Patterns":null},"uk.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"63f3wkcnta-dzr3gq38lz.gz"},"Patterns":null},"vi.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a4scz5f91h-lzd74z7se0.gz"},"Patterns":null},"zh-CN.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jgrz2j3dir-od72x9ld0f.gz"},"Patterns":null},"zh-TW.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"o7hasx90lr-pzjde92gd1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"select2.full.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/select2.full.js"},"Patterns":null},"select2.full.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/select2.full.min.js"},"Patterns":null},"select2.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/select2.js"},"Patterns":null},"select2.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/select2/js/select2.min.js"},"Patterns":null},"select2.full.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6vjoiqvnn8-g0k0d3oo6f.gz"},"Patterns":null},"select2.full.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cai82j7btf-d7y8j4zbn3.gz"},"Patterns":null},"select2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pmxob76iso-knoda3g6ak.gz"},"Patterns":null},"select2.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3vrdd7kp24-xe5rc2fxks.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"sparklines":{"Children":{"sparkline.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sparklines/sparkline.js"},"Patterns":null},"sparkline.mjs":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sparklines/sparkline.mjs"},"Patterns":null},"sparkline.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ms02hwd5ox-gp99a5ywnm.gz"},"Patterns":null},"sparkline.mjs.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"df5du7vhfv-1dq7wap0au.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"summernote":{"Children":{"font":{"Children":{"summernote.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/font/summernote.eot"},"Patterns":null},"summernote.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/font/summernote.ttf"},"Patterns":null},"summernote.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/font/summernote.woff"},"Patterns":null},"summernote.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/font/summernote.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"lang":{"Children":{"summernote-ar-AR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ar-AR.js"},"Patterns":null},"summernote-ar-AR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ar-AR.min.js"},"Patterns":null},"summernote-ar-AR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt"},"Patterns":null},"summernote-az-AZ.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-az-AZ.js"},"Patterns":null},"summernote-az-AZ.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-az-AZ.min.js"},"Patterns":null},"summernote-az-AZ.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt"},"Patterns":null},"summernote-bg-BG.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-bg-BG.js"},"Patterns":null},"summernote-bg-BG.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-bg-BG.min.js"},"Patterns":null},"summernote-bg-BG.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt"},"Patterns":null},"summernote-ca-ES.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ca-ES.js"},"Patterns":null},"summernote-ca-ES.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ca-ES.min.js"},"Patterns":null},"summernote-ca-ES.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt"},"Patterns":null},"summernote-cs-CZ.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-cs-CZ.js"},"Patterns":null},"summernote-cs-CZ.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js"},"Patterns":null},"summernote-cs-CZ.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt"},"Patterns":null},"summernote-da-DK.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-da-DK.js"},"Patterns":null},"summernote-da-DK.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-da-DK.min.js"},"Patterns":null},"summernote-da-DK.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt"},"Patterns":null},"summernote-de-DE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-de-DE.js"},"Patterns":null},"summernote-de-DE.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-de-DE.min.js"},"Patterns":null},"summernote-de-DE.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt"},"Patterns":null},"summernote-el-GR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-el-GR.js"},"Patterns":null},"summernote-el-GR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-el-GR.min.js"},"Patterns":null},"summernote-el-GR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt"},"Patterns":null},"summernote-es-ES.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-ES.js"},"Patterns":null},"summernote-es-ES.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-ES.min.js"},"Patterns":null},"summernote-es-ES.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt"},"Patterns":null},"summernote-es-EU.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-EU.js"},"Patterns":null},"summernote-es-EU.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-EU.min.js"},"Patterns":null},"summernote-es-EU.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt"},"Patterns":null},"summernote-fa-IR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fa-IR.js"},"Patterns":null},"summernote-fa-IR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fa-IR.min.js"},"Patterns":null},"summernote-fa-IR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt"},"Patterns":null},"summernote-fi-FI.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fi-FI.js"},"Patterns":null},"summernote-fi-FI.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fi-FI.min.js"},"Patterns":null},"summernote-fi-FI.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt"},"Patterns":null},"summernote-fr-FR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fr-FR.js"},"Patterns":null},"summernote-fr-FR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fr-FR.min.js"},"Patterns":null},"summernote-fr-FR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt"},"Patterns":null},"summernote-gl-ES.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-gl-ES.js"},"Patterns":null},"summernote-gl-ES.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-gl-ES.min.js"},"Patterns":null},"summernote-gl-ES.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt"},"Patterns":null},"summernote-he-IL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-he-IL.js"},"Patterns":null},"summernote-he-IL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-he-IL.min.js"},"Patterns":null},"summernote-he-IL.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt"},"Patterns":null},"summernote-hr-HR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hr-HR.js"},"Patterns":null},"summernote-hr-HR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hr-HR.min.js"},"Patterns":null},"summernote-hr-HR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt"},"Patterns":null},"summernote-hu-HU.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hu-HU.js"},"Patterns":null},"summernote-hu-HU.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hu-HU.min.js"},"Patterns":null},"summernote-hu-HU.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt"},"Patterns":null},"summernote-id-ID.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-id-ID.js"},"Patterns":null},"summernote-id-ID.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-id-ID.min.js"},"Patterns":null},"summernote-id-ID.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt"},"Patterns":null},"summernote-it-IT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-it-IT.js"},"Patterns":null},"summernote-it-IT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-it-IT.min.js"},"Patterns":null},"summernote-it-IT.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt"},"Patterns":null},"summernote-ja-JP.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ja-JP.js"},"Patterns":null},"summernote-ja-JP.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ja-JP.min.js"},"Patterns":null},"summernote-ja-JP.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt"},"Patterns":null},"summernote-ko-KR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ko-KR.js"},"Patterns":null},"summernote-ko-KR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ko-KR.min.js"},"Patterns":null},"summernote-ko-KR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt"},"Patterns":null},"summernote-lt-LT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LT.js"},"Patterns":null},"summernote-lt-LT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LT.min.js"},"Patterns":null},"summernote-lt-LT.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt"},"Patterns":null},"summernote-lt-LV.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LV.js"},"Patterns":null},"summernote-lt-LV.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LV.min.js"},"Patterns":null},"summernote-lt-LV.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt"},"Patterns":null},"summernote-mn-MN.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-mn-MN.js"},"Patterns":null},"summernote-mn-MN.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-mn-MN.min.js"},"Patterns":null},"summernote-mn-MN.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt"},"Patterns":null},"summernote-nb-NO.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nb-NO.js"},"Patterns":null},"summernote-nb-NO.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nb-NO.min.js"},"Patterns":null},"summernote-nb-NO.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt"},"Patterns":null},"summernote-nl-NL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nl-NL.js"},"Patterns":null},"summernote-nl-NL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nl-NL.min.js"},"Patterns":null},"summernote-nl-NL.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt"},"Patterns":null},"summernote-pl-PL.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pl-PL.js"},"Patterns":null},"summernote-pl-PL.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pl-PL.min.js"},"Patterns":null},"summernote-pl-PL.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt"},"Patterns":null},"summernote-pt-BR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-BR.js"},"Patterns":null},"summernote-pt-BR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-BR.min.js"},"Patterns":null},"summernote-pt-BR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt"},"Patterns":null},"summernote-pt-PT.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-PT.js"},"Patterns":null},"summernote-pt-PT.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-PT.min.js"},"Patterns":null},"summernote-pt-PT.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt"},"Patterns":null},"summernote-ro-RO.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ro-RO.js"},"Patterns":null},"summernote-ro-RO.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ro-RO.min.js"},"Patterns":null},"summernote-ro-RO.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt"},"Patterns":null},"summernote-ru-RU.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ru-RU.js"},"Patterns":null},"summernote-ru-RU.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ru-RU.min.js"},"Patterns":null},"summernote-ru-RU.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt"},"Patterns":null},"summernote-sk-SK.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sk-SK.js"},"Patterns":null},"summernote-sk-SK.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sk-SK.min.js"},"Patterns":null},"summernote-sk-SK.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt"},"Patterns":null},"summernote-sl-SI.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sl-SI.js"},"Patterns":null},"summernote-sl-SI.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sl-SI.min.js"},"Patterns":null},"summernote-sl-SI.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt"},"Patterns":null},"summernote-sr-RS-Latin.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.js"},"Patterns":null},"summernote-sr-RS-Latin.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js"},"Patterns":null},"summernote-sr-RS-Latin.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt"},"Patterns":null},"summernote-sr-RS.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS.js"},"Patterns":null},"summernote-sr-RS.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS.min.js"},"Patterns":null},"summernote-sr-RS.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt"},"Patterns":null},"summernote-sv-SE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sv-SE.js"},"Patterns":null},"summernote-sv-SE.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sv-SE.min.js"},"Patterns":null},"summernote-sv-SE.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt"},"Patterns":null},"summernote-ta-IN.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ta-IN.js"},"Patterns":null},"summernote-ta-IN.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ta-IN.min.js"},"Patterns":null},"summernote-ta-IN.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt"},"Patterns":null},"summernote-th-TH.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-th-TH.js"},"Patterns":null},"summernote-th-TH.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-th-TH.min.js"},"Patterns":null},"summernote-th-TH.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt"},"Patterns":null},"summernote-tr-TR.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-tr-TR.js"},"Patterns":null},"summernote-tr-TR.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-tr-TR.min.js"},"Patterns":null},"summernote-tr-TR.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt"},"Patterns":null},"summernote-uk-UA.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uk-UA.js"},"Patterns":null},"summernote-uk-UA.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uk-UA.min.js"},"Patterns":null},"summernote-uk-UA.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt"},"Patterns":null},"summernote-uz-UZ.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uz-UZ.js"},"Patterns":null},"summernote-uz-UZ.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js"},"Patterns":null},"summernote-uz-UZ.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt"},"Patterns":null},"summernote-vi-VN.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-vi-VN.js"},"Patterns":null},"summernote-vi-VN.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-vi-VN.min.js"},"Patterns":null},"summernote-vi-VN.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt"},"Patterns":null},"summernote-zh-CN.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-CN.js"},"Patterns":null},"summernote-zh-CN.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-CN.min.js"},"Patterns":null},"summernote-zh-CN.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt"},"Patterns":null},"summernote-zh-TW.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-TW.js"},"Patterns":null},"summernote-zh-TW.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-TW.min.js"},"Patterns":null},"summernote-zh-TW.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt"},"Patterns":null},"summernote-ar-AR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6g5pnga3d3-aehlwbvosf.gz"},"Patterns":null},"summernote-ar-AR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8dqgkjryje-ijeehju55z.gz"},"Patterns":null},"summernote-ar-AR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xd8j40j6ef-chw0hn6shk.gz"},"Patterns":null},"summernote-az-AZ.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gt7i297u1h-hyrnjqjlze.gz"},"Patterns":null},"summernote-az-AZ.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"11xqsrjwlf-sgf8lq6r93.gz"},"Patterns":null},"summernote-az-AZ.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x1g5qcwps9-chw0hn6shk.gz"},"Patterns":null},"summernote-bg-BG.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"54bunegmso-gm465sdnct.gz"},"Patterns":null},"summernote-bg-BG.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xsne34jj7y-suw4wijqh1.gz"},"Patterns":null},"summernote-bg-BG.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zruiggjpim-chw0hn6shk.gz"},"Patterns":null},"summernote-ca-ES.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pztjr4y9u9-mddor1mwsk.gz"},"Patterns":null},"summernote-ca-ES.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"93psb5jz6g-osw9lwwh5c.gz"},"Patterns":null},"summernote-ca-ES.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hxpqfkhcca-chw0hn6shk.gz"},"Patterns":null},"summernote-cs-CZ.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"omsjogmtgu-r70o33qyki.gz"},"Patterns":null},"summernote-cs-CZ.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gujwt6h4y7-mge5z5dr1s.gz"},"Patterns":null},"summernote-cs-CZ.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"u696uruoqd-chw0hn6shk.gz"},"Patterns":null},"summernote-da-DK.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ue7nbouzn5-uwsy2peqfl.gz"},"Patterns":null},"summernote-da-DK.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lcn207pd6q-sjs4u6bwi4.gz"},"Patterns":null},"summernote-da-DK.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e1b3a2sy1q-chw0hn6shk.gz"},"Patterns":null},"summernote-de-DE.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ty1f5diu61-q9g2ti8f6p.gz"},"Patterns":null},"summernote-de-DE.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e114lo1pgl-rtk1gfby9z.gz"},"Patterns":null},"summernote-de-DE.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zp1selqdub-chw0hn6shk.gz"},"Patterns":null},"summernote-el-GR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0bttiebvl3-dcdvinz53z.gz"},"Patterns":null},"summernote-el-GR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2ggrrltvyq-ohmk9qq9dt.gz"},"Patterns":null},"summernote-el-GR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zhyqkecydn-chw0hn6shk.gz"},"Patterns":null},"summernote-es-ES.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"waurxc3qsr-lzjb4t441i.gz"},"Patterns":null},"summernote-es-ES.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"js0edzk3c6-q4zrdqcdxy.gz"},"Patterns":null},"summernote-es-ES.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7zof1g5lng-chw0hn6shk.gz"},"Patterns":null},"summernote-es-EU.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ofo9ml9qad-easpac1h3m.gz"},"Patterns":null},"summernote-es-EU.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i2rrjl5iw5-sdblvbwvt1.gz"},"Patterns":null},"summernote-es-EU.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"72hg4wo6q2-chw0hn6shk.gz"},"Patterns":null},"summernote-fa-IR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a282610eji-xo5zc056gn.gz"},"Patterns":null},"summernote-fa-IR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ng23frwann-a7ct8d5ytg.gz"},"Patterns":null},"summernote-fa-IR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qiewphpbkj-chw0hn6shk.gz"},"Patterns":null},"summernote-fi-FI.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nqkf4252x6-9huj2i4ww4.gz"},"Patterns":null},"summernote-fi-FI.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"547qwp0rni-2625xzqdb4.gz"},"Patterns":null},"summernote-fi-FI.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1orrk3kgnq-chw0hn6shk.gz"},"Patterns":null},"summernote-fr-FR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"riy2gaaddd-qxnsanupc8.gz"},"Patterns":null},"summernote-fr-FR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nd82409gfo-cau8nbdvhx.gz"},"Patterns":null},"summernote-fr-FR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hrc4ev0eeg-chw0hn6shk.gz"},"Patterns":null},"summernote-gl-ES.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fx3w540h0x-zza4r26lto.gz"},"Patterns":null},"summernote-gl-ES.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pslc4gb6ux-57iszgy874.gz"},"Patterns":null},"summernote-gl-ES.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h4gx19pq00-chw0hn6shk.gz"},"Patterns":null},"summernote-he-IL.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vswzgrvgtu-4rk8zxjvue.gz"},"Patterns":null},"summernote-he-IL.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m24qc7yee6-ia3smq4cfe.gz"},"Patterns":null},"summernote-he-IL.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7g4fzyfuwc-chw0hn6shk.gz"},"Patterns":null},"summernote-hr-HR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gy5p10a89i-9efhl699tz.gz"},"Patterns":null},"summernote-hr-HR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"19go3f7osu-m74u9kvaju.gz"},"Patterns":null},"summernote-hr-HR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"40wnf8du14-chw0hn6shk.gz"},"Patterns":null},"summernote-hu-HU.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"478frf8ywa-lkgljfffhx.gz"},"Patterns":null},"summernote-hu-HU.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2mdigzi7y2-qzhdpondfw.gz"},"Patterns":null},"summernote-hu-HU.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f5yqmvq66y-chw0hn6shk.gz"},"Patterns":null},"summernote-id-ID.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"loqcuvp7q8-teyf1hq5cd.gz"},"Patterns":null},"summernote-id-ID.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h19dg1nlbe-13olrjtfo0.gz"},"Patterns":null},"summernote-id-ID.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"forgd6yjam-chw0hn6shk.gz"},"Patterns":null},"summernote-it-IT.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ryhsi0nk0f-hu9l9kauxc.gz"},"Patterns":null},"summernote-it-IT.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"toer6td3v7-ifzygrv88a.gz"},"Patterns":null},"summernote-it-IT.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z1efxizd56-chw0hn6shk.gz"},"Patterns":null},"summernote-ja-JP.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j6tdh17e9q-ln3eq91sj9.gz"},"Patterns":null},"summernote-ja-JP.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"poq6znw8sf-47wbz9959a.gz"},"Patterns":null},"summernote-ja-JP.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"irjfl5jtdv-chw0hn6shk.gz"},"Patterns":null},"summernote-ko-KR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"29jgkot2wa-6dpkd4aep7.gz"},"Patterns":null},"summernote-ko-KR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w7fdcm8avn-8g3i79xcka.gz"},"Patterns":null},"summernote-ko-KR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8kuws5o5uq-chw0hn6shk.gz"},"Patterns":null},"summernote-lt-LT.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3620vnl8xl-n1e99b1f7o.gz"},"Patterns":null},"summernote-lt-LT.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j9mueh24mj-5ly2i0bfb5.gz"},"Patterns":null},"summernote-lt-LT.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rfh43pyo3i-chw0hn6shk.gz"},"Patterns":null},"summernote-lt-LV.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k0eosjkz1b-o3rk1issau.gz"},"Patterns":null},"summernote-lt-LV.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3p208dml4v-24e044gqzy.gz"},"Patterns":null},"summernote-lt-LV.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m7ickctm28-chw0hn6shk.gz"},"Patterns":null},"summernote-mn-MN.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k466ipb77f-vkkzr8xbv9.gz"},"Patterns":null},"summernote-mn-MN.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ejnyua2db9-5qyxmr7d45.gz"},"Patterns":null},"summernote-mn-MN.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4qodfsgetu-chw0hn6shk.gz"},"Patterns":null},"summernote-nb-NO.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3gs8d3k2dx-rz8tqivo94.gz"},"Patterns":null},"summernote-nb-NO.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bn6p1b4wf0-r35ctva8xy.gz"},"Patterns":null},"summernote-nb-NO.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oa7810jhb9-chw0hn6shk.gz"},"Patterns":null},"summernote-nl-NL.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hknm4yf35f-nhezwp8nt5.gz"},"Patterns":null},"summernote-nl-NL.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"aqazflwqr8-rbxq40qtfs.gz"},"Patterns":null},"summernote-nl-NL.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rr0bhz4e47-chw0hn6shk.gz"},"Patterns":null},"summernote-pl-PL.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"252gngx9jg-69c2vmkawa.gz"},"Patterns":null},"summernote-pl-PL.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0repsa6xgy-s557plthw2.gz"},"Patterns":null},"summernote-pl-PL.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hz1js37jqz-chw0hn6shk.gz"},"Patterns":null},"summernote-pt-BR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"egoay7k2nw-m3s6hg3f6g.gz"},"Patterns":null},"summernote-pt-BR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6jo0s0kmx9-vqre5jbh73.gz"},"Patterns":null},"summernote-pt-BR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cwwcvb67ws-chw0hn6shk.gz"},"Patterns":null},"summernote-pt-PT.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1t2o0rur6t-bodrm0vfou.gz"},"Patterns":null},"summernote-pt-PT.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hv05m74xhd-fxshqwtyr5.gz"},"Patterns":null},"summernote-pt-PT.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8myybic0eu-chw0hn6shk.gz"},"Patterns":null},"summernote-ro-RO.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lta46le56x-qjzfm37aab.gz"},"Patterns":null},"summernote-ro-RO.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2sr7v2z7cg-uijn27apqv.gz"},"Patterns":null},"summernote-ro-RO.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yn4eey416s-chw0hn6shk.gz"},"Patterns":null},"summernote-ru-RU.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9lqdver4oj-kl4hd1nlmt.gz"},"Patterns":null},"summernote-ru-RU.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xec5rm3gl3-zdh6mk16st.gz"},"Patterns":null},"summernote-ru-RU.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tvmzsa6231-chw0hn6shk.gz"},"Patterns":null},"summernote-sk-SK.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pyy4h5vbww-9nkm3v3ph2.gz"},"Patterns":null},"summernote-sk-SK.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xxttkaef8d-njz9l61140.gz"},"Patterns":null},"summernote-sk-SK.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"po5hfbf2nt-chw0hn6shk.gz"},"Patterns":null},"summernote-sl-SI.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oxdtctnr0z-skmu9cx7lq.gz"},"Patterns":null},"summernote-sl-SI.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d0m87bz6oi-klpiazjn4z.gz"},"Patterns":null},"summernote-sl-SI.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gqzq49p89s-chw0hn6shk.gz"},"Patterns":null},"summernote-sr-RS-Latin.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hh23cjnirb-jhi9pk3uev.gz"},"Patterns":null},"summernote-sr-RS-Latin.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4vb2lsanai-fpa9945jp0.gz"},"Patterns":null},"summernote-sr-RS-Latin.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f9heh36msg-chw0hn6shk.gz"},"Patterns":null},"summernote-sr-RS.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"62qjpmsrae-7cclgkvgep.gz"},"Patterns":null},"summernote-sr-RS.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bp4lynya34-5v60477trr.gz"},"Patterns":null},"summernote-sr-RS.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gwpi7y1gzo-chw0hn6shk.gz"},"Patterns":null},"summernote-sv-SE.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vggkqcwflb-yig25k8ydw.gz"},"Patterns":null},"summernote-sv-SE.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"usnz8ldtfd-23hggirgse.gz"},"Patterns":null},"summernote-sv-SE.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"etce10bvzj-chw0hn6shk.gz"},"Patterns":null},"summernote-ta-IN.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ls5cfgy856-os0m79selo.gz"},"Patterns":null},"summernote-ta-IN.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uzlciq29v0-7mhjm6kwws.gz"},"Patterns":null},"summernote-ta-IN.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9vmnk3gzmb-chw0hn6shk.gz"},"Patterns":null},"summernote-th-TH.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xuof5boqpx-5026eqx7ou.gz"},"Patterns":null},"summernote-th-TH.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zqxapyncu5-xyjcdbn3be.gz"},"Patterns":null},"summernote-th-TH.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gtenhtk9dw-chw0hn6shk.gz"},"Patterns":null},"summernote-tr-TR.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2jzc65mxu3-epkt5pm0lz.gz"},"Patterns":null},"summernote-tr-TR.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jwmb6hhkcg-uwfxcjvvnl.gz"},"Patterns":null},"summernote-tr-TR.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uq0n0m4xme-chw0hn6shk.gz"},"Patterns":null},"summernote-uk-UA.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zqfflo6l6b-i94mlncjie.gz"},"Patterns":null},"summernote-uk-UA.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"idkayfsc6f-llbm1qjuwd.gz"},"Patterns":null},"summernote-uk-UA.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tcgtx9zxvu-chw0hn6shk.gz"},"Patterns":null},"summernote-uz-UZ.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kppxhb751g-be3pddqaqs.gz"},"Patterns":null},"summernote-uz-UZ.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vp54yght7r-ph9fdm6xty.gz"},"Patterns":null},"summernote-uz-UZ.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5hkp26l52z-chw0hn6shk.gz"},"Patterns":null},"summernote-vi-VN.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"igcgvfp3w8-n2cbv7x9ih.gz"},"Patterns":null},"summernote-vi-VN.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4i3w2nndy2-a3v5rdf5mh.gz"},"Patterns":null},"summernote-vi-VN.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mgp8wajfby-chw0hn6shk.gz"},"Patterns":null},"summernote-zh-CN.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zlmllo5gxj-3o4hjk657q.gz"},"Patterns":null},"summernote-zh-CN.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"om91h66nyf-1x2eguu7wj.gz"},"Patterns":null},"summernote-zh-CN.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xx0amyv9qd-chw0hn6shk.gz"},"Patterns":null},"summernote-zh-TW.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iibet08gnh-xtbynweqhx.gz"},"Patterns":null},"summernote-zh-TW.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0x0xnymu9a-fpr83i21gr.gz"},"Patterns":null},"summernote-zh-TW.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p0gup69qi4-chw0hn6shk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"plugin":{"Children":{"databasic":{"Children":{"summernote-ext-databasic.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.css"},"Patterns":null},"summernote-ext-databasic.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/plugin/databasic/summernote-ext-databasic.js"},"Patterns":null},"summernote-ext-databasic.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iktlb34frw-5t061pl49n.gz"},"Patterns":null},"summernote-ext-databasic.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nxehp4gu03-u0fmwk7lv1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"hello":{"Children":{"summernote-ext-hello.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/plugin/hello/summernote-ext-hello.js"},"Patterns":null},"summernote-ext-hello.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dvyk1okz73-0idwcumu15.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"specialchars":{"Children":{"summernote-ext-specialchars.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/plugin/specialchars/summernote-ext-specialchars.js"},"Patterns":null},"summernote-ext-specialchars.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ugz9u90s8o-rh049njogx.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"summernote-bs4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.css"},"Patterns":null},"summernote-bs4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.js"},"Patterns":null},"summernote-bs4.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.js.map"},"Patterns":null},"summernote-bs4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.min.css"},"Patterns":null},"summernote-bs4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.min.js"},"Patterns":null},"summernote-bs4.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.min.js.LICENSE.txt"},"Patterns":null},"summernote-bs4.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-bs4.min.js.map"},"Patterns":null},"summernote-lite.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.css"},"Patterns":null},"summernote-lite.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.js"},"Patterns":null},"summernote-lite.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.js.map"},"Patterns":null},"summernote-lite.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.min.css"},"Patterns":null},"summernote-lite.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.min.js"},"Patterns":null},"summernote-lite.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.min.js.LICENSE.txt"},"Patterns":null},"summernote-lite.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote-lite.min.js.map"},"Patterns":null},"summernote.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.css"},"Patterns":null},"summernote.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.js"},"Patterns":null},"summernote.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.js.map"},"Patterns":null},"summernote.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.min.css"},"Patterns":null},"summernote.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.min.js"},"Patterns":null},"summernote.min.js.LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.min.js.LICENSE.txt"},"Patterns":null},"summernote.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/summernote/summernote.min.js.map"},"Patterns":null},"summernote-bs4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zwdzokmvwn-6qn3apvmw4.gz"},"Patterns":null},"summernote-bs4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dwpggstrqw-17fqplpswt.gz"},"Patterns":null},"summernote-bs4.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7ndl6tqr5e-ufj9sy5cxd.gz"},"Patterns":null},"summernote-bs4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0exmxng36b-mibyrzk3zy.gz"},"Patterns":null},"summernote-bs4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gywvp4jmdd-z77b3b8w9j.gz"},"Patterns":null},"summernote-bs4.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qsccswee2i-chw0hn6shk.gz"},"Patterns":null},"summernote-bs4.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"861v3hp3et-wtjnd85wbg.gz"},"Patterns":null},"summernote-lite.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ftsej3ej9e-wzn89qu32c.gz"},"Patterns":null},"summernote-lite.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"skg3elqr8a-yyusqyxhts.gz"},"Patterns":null},"summernote-lite.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ifkdtvxzf8-maj58wv9x9.gz"},"Patterns":null},"summernote-lite.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"voeq3oa2vf-8mkho5wx63.gz"},"Patterns":null},"summernote-lite.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cpxwagv2sx-i12pygg1ox.gz"},"Patterns":null},"summernote-lite.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"l89yll5r4p-chw0hn6shk.gz"},"Patterns":null},"summernote-lite.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"c9j0id3ycx-d8fovsvequ.gz"},"Patterns":null},"summernote.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h0getg6t16-qwjmuab6qv.gz"},"Patterns":null},"summernote.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kpalrt48kq-0x3wdn8idc.gz"},"Patterns":null},"summernote.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"76nii0gi8w-tjkpt3suws.gz"},"Patterns":null},"summernote.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ujncvbo6hl-hcerk5whas.gz"},"Patterns":null},"summernote.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"hpb8qc686v-azsif58del.gz"},"Patterns":null},"summernote.min.js.LICENSE.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"demh508aqi-chw0hn6shk.gz"},"Patterns":null},"summernote.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v4ah7ixblv-0sghsm7od2.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sweetalert2-theme-bootstrap-4":{"Children":{"bootstrap-4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css"},"Patterns":null},"bootstrap-4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css"},"Patterns":null},"bootstrap-4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ski0jjzmgp-aj01x7r63k.gz"},"Patterns":null},"bootstrap-4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6h762xrj6o-djn4pwpn0p.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sweetalert2":{"Children":{"sweetalert2.all.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.all.js"},"Patterns":null},"sweetalert2.all.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.all.min.js"},"Patterns":null},"sweetalert2.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.css"},"Patterns":null},"sweetalert2.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.js"},"Patterns":null},"sweetalert2.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.min.css"},"Patterns":null},"sweetalert2.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/sweetalert2/sweetalert2.min.js"},"Patterns":null},"sweetalert2.all.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tt9jm7z8cl-3caznmfr98.gz"},"Patterns":null},"sweetalert2.all.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pqg20owe0h-6pbeukatnn.gz"},"Patterns":null},"sweetalert2.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kmt8rak45b-8otxn1ksun.gz"},"Patterns":null},"sweetalert2.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3y7xl927dh-9bhl9814zb.gz"},"Patterns":null},"sweetalert2.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qbdb7j9wci-mp8obrq8fg.gz"},"Patterns":null},"sweetalert2.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"79zzak9iaw-yplx3wijtz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"tempusdominus-bootstrap-4":{"Children":{"css":{"Children":{"tempusdominus-bootstrap-4.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.css"},"Patterns":null},"tempusdominus-bootstrap-4.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css"},"Patterns":null},"tempusdominus-bootstrap-4.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wtmy0r6azj-e56ldtv76u.gz"},"Patterns":null},"tempusdominus-bootstrap-4.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bmj05gnyct-0plyx7y3kp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"tempusdominus-bootstrap-4.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.js"},"Patterns":null},"tempusdominus-bootstrap-4.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"},"Patterns":null},"tempusdominus-bootstrap-4.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9kco29m57k-1dxtyb37x5.gz"},"Patterns":null},"tempusdominus-bootstrap-4.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qxwcunmucx-sni508cqz3.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"toastr":{"Children":{"toastr.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/toastr/toastr.css"},"Patterns":null},"toastr.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/toastr/toastr.js.map"},"Patterns":null},"toastr.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/toastr/toastr.min.css"},"Patterns":null},"toastr.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/toastr/toastr.min.js"},"Patterns":null},"toastr.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6olr5is0y3-xk3qo5andv.gz"},"Patterns":null},"toastr.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pgc933juek-jw5ahztbe4.gz"},"Patterns":null},"toastr.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h6tuij350o-fuwkiubrsj.gz"},"Patterns":null},"toastr.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0jc6zpz70k-t2jsbw6zax.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"uplot":{"Children":{"uPlot.cjs.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/uplot/uPlot.cjs.js"},"Patterns":null},"uPlot.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/uplot/uPlot.esm.js"},"Patterns":null},"uPlot.iife.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/uplot/uPlot.iife.js"},"Patterns":null},"uPlot.iife.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/uplot/uPlot.iife.min.js"},"Patterns":null},"uPlot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"adminlte/plugins/uplot/uPlot.min.css"},"Patterns":null},"uPlot.cjs.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h03fmzqiqq-5z0cpq88wd.gz"},"Patterns":null},"uPlot.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8cl832arnb-yq2vhh58zx.gz"},"Patterns":null},"uPlot.iife.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fvzjt1ll7i-3ikm0y6glo.gz"},"Patterns":null},"uPlot.iife.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"d6qsl0icb1-d8uwo8d1rz.gz"},"Patterns":null},"uPlot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"toj6si49s2-1abka3fkni.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"app_data":{"Children":{"docs":{"Children":{"14efef618f8445aab3aad90c51526c00.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/14efef618f8445aab3aad90c51526c00.csv"},"Patterns":null},"4a19b9d69afa43fd83702bcb6dfc6070.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv"},"Patterns":null},"50ab4030daf843a6be906c4055276e63.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/50ab4030daf843a6be906c4055276e63.csv"},"Patterns":null},"65b5897a31db413387ea6f45f9f12a7f.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv"},"Patterns":null},"6b6f9251e78e433fa9d34d598e1f10cd.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv"},"Patterns":null},"6e589b1b3baf4842917c82738abb52c8.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv"},"Patterns":null},"8248d355134c4739a5d8fd2bd3464746.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv"},"Patterns":null},"a5dd51b4e5d54835a7ec5142cefb5389.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv"},"Patterns":null},"a5fb8e7687b34eb7a1322f694b308cec.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv"},"Patterns":null},"af6a2973f5c54149bce9c5616308e791.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/af6a2973f5c54149bce9c5616308e791.csv"},"Patterns":null},"b05059e7065c4226b69a03a9903444cc.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/b05059e7065c4226b69a03a9903444cc.csv"},"Patterns":null},"b0c530b06d89409caf545d425c9b3a3c.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv"},"Patterns":null},"ba0bb232df1242b0bd02bc7114949f14.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv"},"Patterns":null},"c3c9977ee57f49008ae7d4b820c9d151.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv"},"Patterns":null},"cc2f7221b1f646dcac9032832923f0d2.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv"},"Patterns":null},"cd92c1c878c8467195f8aa46eb59dce4.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv"},"Patterns":null},"d1c2c2580596409a899dba12174e05e8.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/d1c2c2580596409a899dba12174e05e8.csv"},"Patterns":null},"d798003427e24dd88e708e590ec30589.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/d798003427e24dd88e708e590ec30589.csv"},"Patterns":null},"e2ae08ba0bc9436bb26c17fe2926c8cf.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv"},"Patterns":null},"e5b63c6481b04979a5cd7cdf147f3cf5.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv"},"Patterns":null},"e6a0ea5d69df4e71b0a8a2e34f579162.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv"},"Patterns":null},"ef6180e120864637890b8cbdfaef9b0b.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv"},"Patterns":null},"f23ed3dfa80c464391ed01408145f272.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/f23ed3dfa80c464391ed01408145f272.csv"},"Patterns":null},"f261b29397a44dd7b0a0d49c3b088724.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv"},"Patterns":null},"f8150866b789483ea9272586b8ae863a.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/f8150866b789483ea9272586b8ae863a.csv"},"Patterns":null},"fe6dad44b7e840c3803a73ace22bbc34.csv":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv"},"Patterns":null},"keep.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/docs/keep.txt"},"Patterns":null},"14efef618f8445aab3aad90c51526c00.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7hmhcxtrhy-zo26shrg4i.gz"},"Patterns":null},"4a19b9d69afa43fd83702bcb6dfc6070.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"edfe2ilnrc-zo26shrg4i.gz"},"Patterns":null},"50ab4030daf843a6be906c4055276e63.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"g0g4tm8nw4-zo26shrg4i.gz"},"Patterns":null},"65b5897a31db413387ea6f45f9f12a7f.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rdspsiruyr-zo26shrg4i.gz"},"Patterns":null},"6b6f9251e78e433fa9d34d598e1f10cd.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"q0v6c33i05-zo26shrg4i.gz"},"Patterns":null},"6e589b1b3baf4842917c82738abb52c8.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5jcfuf28uf-zo26shrg4i.gz"},"Patterns":null},"8248d355134c4739a5d8fd2bd3464746.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r8dzf20ppk-zo26shrg4i.gz"},"Patterns":null},"a5dd51b4e5d54835a7ec5142cefb5389.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vbm3ev8rnq-zo26shrg4i.gz"},"Patterns":null},"a5fb8e7687b34eb7a1322f694b308cec.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s2kr12gl20-zo26shrg4i.gz"},"Patterns":null},"af6a2973f5c54149bce9c5616308e791.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lrbl4uai21-zo26shrg4i.gz"},"Patterns":null},"b05059e7065c4226b69a03a9903444cc.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kktybdcjzy-zo26shrg4i.gz"},"Patterns":null},"b0c530b06d89409caf545d425c9b3a3c.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jaimcpki52-zo26shrg4i.gz"},"Patterns":null},"ba0bb232df1242b0bd02bc7114949f14.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fk1co6f49b-zo26shrg4i.gz"},"Patterns":null},"c3c9977ee57f49008ae7d4b820c9d151.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fms48sbkb2-zo26shrg4i.gz"},"Patterns":null},"cc2f7221b1f646dcac9032832923f0d2.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9feduivtnj-zo26shrg4i.gz"},"Patterns":null},"cd92c1c878c8467195f8aa46eb59dce4.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ig75eo52hf-zo26shrg4i.gz"},"Patterns":null},"d1c2c2580596409a899dba12174e05e8.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pfrqhb9d8r-zo26shrg4i.gz"},"Patterns":null},"d798003427e24dd88e708e590ec30589.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dupeg255vu-zo26shrg4i.gz"},"Patterns":null},"e2ae08ba0bc9436bb26c17fe2926c8cf.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4konoovy9t-zo26shrg4i.gz"},"Patterns":null},"e5b63c6481b04979a5cd7cdf147f3cf5.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xtg8sp54m1-zo26shrg4i.gz"},"Patterns":null},"e6a0ea5d69df4e71b0a8a2e34f579162.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"f9mrjnvcqj-zo26shrg4i.gz"},"Patterns":null},"ef6180e120864637890b8cbdfaef9b0b.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"qkgfznej03-zo26shrg4i.gz"},"Patterns":null},"f23ed3dfa80c464391ed01408145f272.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wo27ss76qc-zo26shrg4i.gz"},"Patterns":null},"f261b29397a44dd7b0a0d49c3b088724.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gct5qg9cia-zo26shrg4i.gz"},"Patterns":null},"f8150866b789483ea9272586b8ae863a.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0ezi4k4ue2-zo26shrg4i.gz"},"Patterns":null},"fe6dad44b7e840c3803a73ace22bbc34.csv.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"s3lw6rkgfs-zo26shrg4i.gz"},"Patterns":null},"keep.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r50k0ly0hk-3r8b2a0bt1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"images":{"Children":{"c587a28715d34524962fad9aa6670365.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/images/c587a28715d34524962fad9aa6670365.jpg"},"Patterns":null},"keep.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app_data/images/keep.txt"},"Patterns":null},"keep.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3rczveeavw-3r8b2a0bt1.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"default-avatar.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"default-avatar.png"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"lib":{"Children":{"axios":{"Children":{"axios.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/axios/axios.min.js"},"Patterns":null},"axios.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rla5hpp666-ic71c9pf41.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-icons.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-icons.css"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"fonts":{"Children":{"bootstrap-icons.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/fonts/bootstrap-icons.woff"},"Patterns":null},"bootstrap-icons.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/fonts/bootstrap-icons.woff2"},"Patterns":null}},"Asset":null,"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"sc866uanz5-nakmwdwsxp.gz"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"he9pra1t55-st1cbwfwo5.gz"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4nhtlny9v2-5p029spbuu.gz"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fr1oqq5sfs-5vj65cig9w.gz"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7pc44l4glz-e6q6xbwqzk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ml3rjpwtdg-2q4vfeazbq.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"305xoeilmy-dy6jgresuo.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z2d60ieh20-o371a8zbv2.gz"},"Patterns":null},"bootstrap-icons.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pphpz8fhez-9r627ylsql.gz"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j7rzx48qyu-mk8rdyw69w.gz"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"azzf4z3etd-jeal3x0ldm.gz"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b8ypyoif8v-z7kmom2977.gz"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"udyywvkjxt-okkk44j0xs.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p002li2hg0-97yrjpyf9r.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fm99rr7mro-cwzlr5n8x4.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p6v6b93a35-y53cy5s2zj.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6l7g0rvaeq-wmug9u23qg.gz"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3fss15vmpa-z9shlbduue.gz"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oayi6jzgg1-j75batdsum.gz"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"56h30pv4zi-2yn17lgxub.gz"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"opzgbvon6l-vy0bq9ydhf.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b59nj9jsy8-ophe14yye5.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9jjhgf56s1-ab1c3rmv7g.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rfp70p99vs-ik6i2hrs65.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lpsv4k3d20-56d2bn4wt9.gz"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5q1spatuoq-ozu22stjof.gz"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uwxf842kwe-73kdqttayv.gz"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"e81xb7f625-6gzpyzhau4.gz"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"h83qnasp32-8inm30yfxf.gz"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0asp86vlef-gjcw7pocpk.gz"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ze55yb0vit-4gxs3k148c.gz"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"khugyzh9d5-6l4ir0ityv.gz"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xgj09rf77z-fctod5rc9n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/fonts.svg"},"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yjxhh0nusg-f6zq8v6eb3.gz"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"k2l53wn9pq-kbynt5jhd9.gz"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3fd6b8ecxe-89qbw8ngem.gz"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ubp8qkvdy8-c2nslu3uf3.gz"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"naesemb0my-n5w6o92d9r.gz"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j192vvrf03-2lgwfvgpvi.gz"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bizglqstou-jqwzsa9uv6.gz"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1c9ww6r2wq-wsezl0heh6.gz"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"waejmei4ng-1piudyfv7h.gz"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cj13l08j1b-6ukhryfubh.gz"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"omefaleslz-4908xmbfjr.gz"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"b8f147do37-u33ctipx7g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ruuf2ml1zr-bakzt2zuye.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"dropzone":{"Children":{"dropzone.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/dropzone/dropzone.min.css"},"Patterns":null},"dropzone.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/dropzone/dropzone.min.js"},"Patterns":null},"dropzone.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3qlf2rlqkp-rpo6apucdd.gz"},"Patterns":null},"dropzone.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"rmy3fruzwy-g2vsoxxg9l.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"font-awesome":{"Children":{"css":{"Children":{"all.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/all.css"},"Patterns":null},"all.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/all.min.css"},"Patterns":null},"brands.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/brands.css"},"Patterns":null},"brands.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/brands.min.css"},"Patterns":null},"fontawesome.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/fontawesome.css"},"Patterns":null},"fontawesome.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/fontawesome.min.css"},"Patterns":null},"regular.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/regular.css"},"Patterns":null},"regular.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/regular.min.css"},"Patterns":null},"solid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/solid.css"},"Patterns":null},"solid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/solid.min.css"},"Patterns":null},"svg-with-js.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/svg-with-js.css"},"Patterns":null},"svg-with-js.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/svg-with-js.min.css"},"Patterns":null},"v4-shims.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/v4-shims.css"},"Patterns":null},"v4-shims.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/css/v4-shims.min.css"},"Patterns":null},"all.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"643y9o1gpa-gz3otmzdmh.gz"},"Patterns":null},"all.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t1u49czexn-tqrty0tmzw.gz"},"Patterns":null},"brands.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w83qylezxk-lc9dol4lo6.gz"},"Patterns":null},"brands.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"orlx154bd9-2m5ro0ilug.gz"},"Patterns":null},"fontawesome.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9kesuze7zv-6d51olv6j3.gz"},"Patterns":null},"fontawesome.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"7atjr6nae0-4rcvuen4jw.gz"},"Patterns":null},"regular.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"58b5unhhkv-mtdyy5m523.gz"},"Patterns":null},"regular.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mlz2phtc09-upn7fjuiur.gz"},"Patterns":null},"solid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x6mpufzlgn-hfb4dth8na.gz"},"Patterns":null},"solid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gpa967fxts-tju85rksnn.gz"},"Patterns":null},"svg-with-js.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mc4ivdmvsv-jfb1c0fodm.gz"},"Patterns":null},"svg-with-js.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"dmvcr0vsas-pz9hh5frqh.gz"},"Patterns":null},"v4-shims.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m2kjrxhv83-y7sbnt5r6l.gz"},"Patterns":null},"v4-shims.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w3zyo152iu-qwiihh62ph.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"webfonts":{"Children":{"fa-brands-400.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-brands-400.eot"},"Patterns":null},"fa-brands-400.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-brands-400.svg"},"Patterns":null},"fa-brands-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-brands-400.ttf"},"Patterns":null},"fa-brands-400.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-brands-400.woff"},"Patterns":null},"fa-brands-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-brands-400.woff2"},"Patterns":null},"fa-regular-400.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-regular-400.eot"},"Patterns":null},"fa-regular-400.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-regular-400.svg"},"Patterns":null},"fa-regular-400.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-regular-400.ttf"},"Patterns":null},"fa-regular-400.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-regular-400.woff"},"Patterns":null},"fa-regular-400.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-regular-400.woff2"},"Patterns":null},"fa-solid-900.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-solid-900.eot"},"Patterns":null},"fa-solid-900.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-solid-900.svg"},"Patterns":null},"fa-solid-900.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-solid-900.ttf"},"Patterns":null},"fa-solid-900.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-solid-900.woff"},"Patterns":null},"fa-solid-900.woff2":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/font-awesome/webfonts/fa-solid-900.woff2"},"Patterns":null},"fa-brands-400.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"pxkil1cnes-7t806y02pw.gz"},"Patterns":null},"fa-regular-400.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"i9g1khp5gu-mm3hm36b2x.gz"},"Patterns":null},"fa-solid-900.svg.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"yexj414gay-97uxsgb79l.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"indotalent":{"Children":{"axios-manager.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/indotalent/axios-manager.js"},"Patterns":null},"date-format-manager.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/indotalent/date-format-manager.js"},"Patterns":null},"number-format-manager.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/indotalent/number-format-manager.js"},"Patterns":null},"security-manager.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/indotalent/security-manager.js"},"Patterns":null},"storage-manager.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/indotalent/storage-manager.js"},"Patterns":null},"axios-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"v35ya72wh3-bqo8tjd34n.gz"},"Patterns":null},"date-format-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5mt76va87g-i6fp8gf8qd.gz"},"Patterns":null},"number-format-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"x1s35b7mlt-a95yye13cc.gz"},"Patterns":null},"security-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"j9ys5tfgze-nllqzy8jpe.gz"},"Patterns":null},"storage-manager.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"744j899txe-vtoexcko5r.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"select2-bootstrap-5-theme":{"Children":{"select2-bootstrap-5-theme.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/select2-bootstrap-5-theme/select2-bootstrap-5-theme.min.css"},"Patterns":null},"select2-bootstrap-5-theme.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"a52s9mde22-exoevqxwaz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"sweetalert":{"Children":{"sweetalert2v11.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/sweetalert/sweetalert2v11.js"},"Patterns":null},"sweetalert2v11.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9of6x739hn-85hcwkfdyy.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"syncfusion":{"Children":{"css":{"Children":{"bootstrap5-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/bootstrap5-dark.css"},"Patterns":null},"bootstrap5.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/bootstrap5.css"},"Patterns":null},"material-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/material-dark.css"},"Patterns":null},"material.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/material.css"},"Patterns":null},"tailwind-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/tailwind-dark.css"},"Patterns":null},"tailwind.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/css/tailwind.css"},"Patterns":null},"bootstrap5-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6c9ej5poj9-v8x6k0gi0w.gz"},"Patterns":null},"bootstrap5.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"34leb5f150-23hfjsc4ne.gz"},"Patterns":null},"material-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3nw3s5oi9d-44jae26582.gz"},"Patterns":null},"material.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vh4m59v1no-mh2z8f69tg.gz"},"Patterns":null},"tailwind-dark.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iog9vs6byw-4mtc497wsu.gz"},"Patterns":null},"tailwind.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"vuj1jueiyv-qb6zfizwvl.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"ej2.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/syncfusion/js/ej2.min.js"},"Patterns":null},"ej2.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"kcbr427x0g-4axjtj7sen.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"vue":{"Children":{"vue.global.prod.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/vue/vue.global.prod.js"},"Patterns":null},"vue.global.prod.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gs29mngddx-0k1uw388t1.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"nodocument.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"nodocument.txt"},"Patterns":null},"noimage.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"noimage.png"},"Patterns":null},"FrontEnd":{"Children":{"Pages":{"Children":{"Accounts":{"Children":{"EmailConfirm.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/EmailConfirm.cshtml.js"},"Patterns":null},"ForgotPassword.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/ForgotPassword.cshtml.js"},"Patterns":null},"ForgotPasswordConfirmation.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/ForgotPasswordConfirmation.cshtml.js"},"Patterns":null},"Login.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/Login.cshtml.js"},"Patterns":null},"Logout.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/Logout.cshtml.js"},"Patterns":null},"Register.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Accounts/Register.cshtml.js"},"Patterns":null},"EmailConfirm.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"4kc398yqu8-0s5dvoe2zb.gz"},"Patterns":null},"ForgotPassword.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"t8vv6agjrp-lgfafmh1p2.gz"},"Patterns":null},"ForgotPasswordConfirmation.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"tunbtbf4o5-r7feuejmgw.gz"},"Patterns":null},"Login.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ewo2xhfeeq-mjwo2egp80.gz"},"Patterns":null},"Logout.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"02hyuflmlg-qm00s7wcd2.gz"},"Patterns":null},"Register.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"6nf1rnoxmc-qvj799enpg.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Budgets":{"Children":{"BudgetList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Budgets/BudgetList.cshtml.js"},"Patterns":null},"BudgetList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ctyos0x76c-iml0mk2ul6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Campaigns":{"Children":{"CampaignList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Campaigns/CampaignList.cshtml.js"},"Patterns":null},"CampaignList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"w2scbk373p-b3u5zt8h6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Companies":{"Children":{"MyCompany.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Companies/MyCompany.cshtml.js"},"Patterns":null},"MyCompany.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5mrnbmcbl8-n7ke8c3awf.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"CustomerCategories":{"Children":{"CustomerCategoryList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/CustomerCategories/CustomerCategoryList.cshtml.js"},"Patterns":null},"CustomerCategoryList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"19wlqnht7l-1g4cs8tpba.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"CustomerContacts":{"Children":{"CustomerContactList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/CustomerContacts/CustomerContactList.cshtml.js"},"Patterns":null},"CustomerContactList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"zqf4jaf017-y3xl36pfox.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"CustomerGroups":{"Children":{"CustomerGroupList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/CustomerGroups/CustomerGroupList.cshtml.js"},"Patterns":null},"CustomerGroupList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lgclc7i1i0-21wrniu7lt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Customers":{"Children":{"CustomerList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Customers/CustomerList.cshtml.js"},"Patterns":null},"CustomerList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5zjzod0o3u-yhcsne7gmh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Dashboards":{"Children":{"DefaultDashboard.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Dashboards/DefaultDashboard.cshtml.js"},"Patterns":null},"DefaultDashboard.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"9ry37dnms7-nmcvos8o2n.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Data":{"Children":{"manage.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Data/manage.cshtml.js"},"Patterns":null},"manage.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nbu6f5ll31-rtto77j28d.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Expenses":{"Children":{"ExpenseList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Expenses/ExpenseList.cshtml.js"},"Patterns":null},"ExpenseList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m6acu5nwrg-lhpb58thbw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LeadActivities":{"Children":{"LeadActivityList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/LeadActivities/LeadActivityList.cshtml.js"},"Patterns":null},"LeadActivityList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"mdb13atf86-eqjasxary5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"LeadContacts":{"Children":{"LeadContactList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/LeadContacts/LeadContactList.cshtml.js"},"Patterns":null},"LeadContactList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bhc3rl4256-erstaiw1ev.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Leads":{"Children":{"LeadList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Leads/LeadList.cshtml.js"},"Patterns":null},"LeadList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"989x7ca9fh-ux6b5dfj1i.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSequences":{"Children":{"NumberSequenceList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/NumberSequences/NumberSequenceList.cshtml.js"},"Patterns":null},"NumberSequenceList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iy0yyz4uv8-ijw9u1bzmb.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"ProductGroups":{"Children":{"ProductGroupList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/ProductGroups/ProductGroupList.cshtml.js"},"Patterns":null},"ProductGroupList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wh8j9xkluw-ujgyg05qbi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Products":{"Children":{"ProductList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Products/ProductList.cshtml.js"},"Patterns":null},"ProductList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2doq3izdll-u7hfrrcuvx.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Profiles":{"Children":{"MyProfile.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Profiles/MyProfile.cshtml.js"},"Patterns":null},"MyProfile.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gq7ar9sgw4-z7l00zr71l.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PurchaseOrders":{"Children":{"PurchaseOrderList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/PurchaseOrders/PurchaseOrderList.cshtml.js"},"Patterns":null},"PurchaseOrderPdf.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/PurchaseOrders/PurchaseOrderPdf.cshtml.js"},"Patterns":null},"PurchaseOrderList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"wjtat6ef62-knjae1vpgc.gz"},"Patterns":null},"PurchaseOrderPdf.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"m7j905xqk5-ra7gjpzpcf.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PurchaseReports":{"Children":{"PurchaseReportList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/PurchaseReports/PurchaseReportList.cshtml.js"},"Patterns":null},"PurchaseReportList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"nx39ullj5r-v3qtngav95.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Roles":{"Children":{"RoleList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Roles/RoleList.cshtml.js"},"Patterns":null},"RoleList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"cy78tca1oc-559lg5x90y.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SalesOrders":{"Children":{"SalesOrderList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/SalesOrders/SalesOrderList.cshtml.js"},"Patterns":null},"SalesOrderPdf.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/SalesOrders/SalesOrderPdf.cshtml.js"},"Patterns":null},"SalesOrderList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"z4u9jy1xa5-ke9u58kkv3.gz"},"Patterns":null},"SalesOrderPdf.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"3g9t2h787f-hnuqw0t70s.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SalesReports":{"Children":{"SalesReportList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/SalesReports/SalesReportList.cshtml.js"},"Patterns":null},"SalesReportList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8aqc5cgxdi-xxgdeo48i4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SalesRepresentatives":{"Children":{"SalesRepresentativeList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/SalesRepresentatives/SalesRepresentativeList.cshtml.js"},"Patterns":null},"SalesRepresentativeList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"5ij4nobes4-ajmal1vb5a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SalesTeams":{"Children":{"SalesTeamList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/SalesTeams/SalesTeamList.cshtml.js"},"Patterns":null},"SalesTeamList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"glclejib6d-nbilz1vdgb.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Taxs":{"Children":{"TaxList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Taxs/TaxList.cshtml.js"},"Patterns":null},"TaxList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"bd8sg00ejl-g4ylxwtlsa.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"TodoItems":{"Children":{"TodoItemList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/TodoItems/TodoItemList.cshtml.js"},"Patterns":null},"TodoItemList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"p76i9jjszr-fwdy7xr21h.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Todos":{"Children":{"TodoList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Todos/TodoList.cshtml.js"},"Patterns":null},"TodoList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oxk7zmp0b8-mprx04zug1.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"UnitMeasures":{"Children":{"UnitMeasureList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/UnitMeasures/UnitMeasureList.cshtml.js"},"Patterns":null},"UnitMeasureList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ftr4m15iam-v3d84aywvr.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Users":{"Children":{"UserList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Users/UserList.cshtml.js"},"Patterns":null},"UserList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"iycpbcqevu-ih861heuk4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"VendorCategories":{"Children":{"VendorCategoryList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/VendorCategories/VendorCategoryList.cshtml.js"},"Patterns":null},"VendorCategoryList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"emgdm48f5w-5ligfrjdri.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"VendorContacts":{"Children":{"VendorContactList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/VendorContacts/VendorContactList.cshtml.js"},"Patterns":null},"VendorContactList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"1jvu0025o5-l24421imb3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"VendorGroups":{"Children":{"VendorGroupList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/VendorGroups/VendorGroupList.cshtml.js"},"Patterns":null},"VendorGroupList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"awci0uj5ik-vzhh6pm7wn.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Vendors":{"Children":{"VendorList.cshtml.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"FrontEnd/Pages/Vendors/VendorList.cshtml.js"},"Patterns":null},"VendorList.cshtml.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"oynzrzga4g-1tv4qa9t1c.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"gix29n1wom-r4qqgvv0sw.gz"},"Patterns":null},"nodocument.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"xuoriqwoc4-3r8b2a0bt1.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Application.dll b/Presentation/ASPNET/bin/Debug/net9.0/Application.dll new file mode 100644 index 0000000..7c1bbfd Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Application.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Application.pdb b/Presentation/ASPNET/bin/Debug/net9.0/Application.pdb new file mode 100644 index 0000000..bfb919e Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Application.pdb differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/AutoMapper.dll b/Presentation/ASPNET/bin/Debug/net9.0/AutoMapper.dll new file mode 100644 index 0000000..b8e01b0 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/AutoMapper.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Azure.Core.dll b/Presentation/ASPNET/bin/Debug/net9.0/Azure.Core.dll new file mode 100644 index 0000000..d3fa20b Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Azure.Core.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Azure.Identity.dll b/Presentation/ASPNET/bin/Debug/net9.0/Azure.Identity.dll new file mode 100644 index 0000000..aab6832 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Azure.Identity.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/BouncyCastle.Cryptography.dll b/Presentation/ASPNET/bin/Debug/net9.0/BouncyCastle.Cryptography.dll new file mode 100644 index 0000000..b62a41b Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/BouncyCastle.Cryptography.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/CsvHelper.dll b/Presentation/ASPNET/bin/Debug/net9.0/CsvHelper.dll new file mode 100644 index 0000000..7a4a0fa Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/CsvHelper.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Domain.dll b/Presentation/ASPNET/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..55dd2a4 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Domain.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Domain.pdb b/Presentation/ASPNET/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..222fce2 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Domain.pdb differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.DependencyInjectionExtensions.dll b/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.DependencyInjectionExtensions.dll new file mode 100644 index 0000000..2565214 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.DependencyInjectionExtensions.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.dll b/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.dll new file mode 100644 index 0000000..01eb485 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/FluentValidation.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.dll b/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.dll new file mode 100644 index 0000000..2e75a68 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.pdb b/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.pdb new file mode 100644 index 0000000..e264d2e Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Infrastructure.pdb differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/MailKit.dll b/Presentation/ASPNET/bin/Debug/net9.0/MailKit.dll new file mode 100644 index 0000000..e454ad4 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/MailKit.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/MediatR.Contracts.dll b/Presentation/ASPNET/bin/Debug/net9.0/MediatR.Contracts.dll new file mode 100644 index 0000000..32bc7c1 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/MediatR.Contracts.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/MediatR.dll b/Presentation/ASPNET/bin/Debug/net9.0/MediatR.dll new file mode 100644 index 0000000..b910860 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/MediatR.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100644 index 0000000..ca76774 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll new file mode 100644 index 0000000..a0d03f6 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.UI.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.UI.dll new file mode 100644 index 0000000..cbd24dd Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.UI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..a5b7ff9 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..85903b0 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..e5b92b5 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..7e313e5 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll new file mode 100644 index 0000000..6c881dc Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..f362a04 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..9a7cadb Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..73873e5 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Identity.Client.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..e981f87 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..25f2a7e Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..4ffdb25 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..6c736d2 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..9f30508 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..83ec83a Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.OpenApi.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..8ba2ce6 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll new file mode 100644 index 0000000..ddeaa86 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Win32.SystemEvents.dll b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/MimeKit.dll b/Presentation/ASPNET/bin/Debug/net9.0/MimeKit.dll new file mode 100644 index 0000000..6f8cce7 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/MimeKit.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Extensions.Logging.dll b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Extensions.Logging.dll new file mode 100644 index 0000000..f2f78c7 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Extensions.Logging.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Settings.Configuration.dll b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Settings.Configuration.dll new file mode 100644 index 0000000..25692ac Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Settings.Configuration.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Sinks.File.dll b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..17d80f3 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.Sinks.File.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Serilog.dll b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.dll new file mode 100644 index 0000000..d2c659f Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Serilog.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..6f55a41 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..67b6e63 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..0ff6987 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.ClientModel.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.ClientModel.dll new file mode 100644 index 0000000..00a3380 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.ClientModel.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..14f8ef6 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Drawing.Common.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Drawing.Common.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..c42b8d7 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Memory.Data.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Memory.Data.dll new file mode 100644 index 0000000..6f2a3e0 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Memory.Data.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Runtime.Caching.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Runtime.Caching.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Permissions.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Security.Permissions.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/System.Windows.Extensions.dll b/Presentation/ASPNET/bin/Debug/net9.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/System.Windows.Extensions.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/appsettings.Development.json b/Presentation/ASPNET/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..770d3e9 --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Presentation/ASPNET/bin/Debug/net9.0/appsettings.json b/Presentation/ASPNET/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..633209a --- /dev/null +++ b/Presentation/ASPNET/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,62 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "Server=localhost;Database=CRM-LTE-FS;User=andy;Password=root;TrustServerCertificate=True;" + }, + "DatabaseProvider": "SqlServer", + "FileImageManager": { + "PathFolder": "wwwroot/app_data/images", + "MaxFileSizeInMB": 5 + }, + "FileDocumentManager": { + "PathFolder": "wwwroot/app_data/docs", + "MaxFileSizeInMB": 25 + }, + "AspNetIdentity": { + "Password": { + "RequireDigit": false, + "RequireLowercase": false, + "RequireUppercase": false, + "RequireNonAlphanumeric": false, + "RequiredLength": 6 + }, + "Lockout": { + "DefaultLockoutTimeSpanInMinutes": 30, + "MaxFailedAccessAttempts": 5, + "AllowedForNewUsers": true + }, + "User": { + "RequireUniqueEmail": true + }, + "SignIn": { + "RequireConfirmedEmail": true //confirmation will sent through email, make sure SMTP Config is OK. + }, + "DefaultAdmin": { + "Email": "admin@root.com", + "Password": "123456" + } + }, + "Jwt": { + "Key": "YourVeryStrongAndSecureSecretKeyWhichIs32Chars!", //minimum 32 char + "Issuer": "YourIssuer", + "Audience": "YourAudience", + "ExpireInMinute": 30, + "ClockSkewInMinute": 0 + }, + "SmtpSettings": { + "Host": "xxx.gmail.com", + "Port": 465, + "UserName": "xxx@gmail.com", + "Password": "xxx", //if use smtp.gmail.com, use the GMAIL app password, not your email password. https://support.google.com/mail/answer/185833?hl=en + "FromAddress": "xxx@gmail.com", + "FromName": "INDOTALENT" + }, + "IsDemoVersion": true, + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:5000" + } + } + }, + "AllowedHosts": "*" +} diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..206341f Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..c171a72 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3f2b452 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..8fde16b Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..93fb631 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..ff20fab Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/Presentation/ASPNET/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/14efef618f8445aab3aad90c51526c00.csv b/Presentation/ASPNET/wwwroot/app_data/docs/14efef618f8445aab3aad90c51526c00.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/14efef618f8445aab3aad90c51526c00.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv b/Presentation/ASPNET/wwwroot/app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/4a19b9d69afa43fd83702bcb6dfc6070.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/50ab4030daf843a6be906c4055276e63.csv b/Presentation/ASPNET/wwwroot/app_data/docs/50ab4030daf843a6be906c4055276e63.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/50ab4030daf843a6be906c4055276e63.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv b/Presentation/ASPNET/wwwroot/app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/65b5897a31db413387ea6f45f9f12a7f.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv b/Presentation/ASPNET/wwwroot/app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/6b6f9251e78e433fa9d34d598e1f10cd.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv b/Presentation/ASPNET/wwwroot/app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/6e589b1b3baf4842917c82738abb52c8.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv b/Presentation/ASPNET/wwwroot/app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/8248d355134c4739a5d8fd2bd3464746.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv b/Presentation/ASPNET/wwwroot/app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/a5dd51b4e5d54835a7ec5142cefb5389.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv b/Presentation/ASPNET/wwwroot/app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/a5fb8e7687b34eb7a1322f694b308cec.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/af6a2973f5c54149bce9c5616308e791.csv b/Presentation/ASPNET/wwwroot/app_data/docs/af6a2973f5c54149bce9c5616308e791.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/af6a2973f5c54149bce9c5616308e791.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/b05059e7065c4226b69a03a9903444cc.csv b/Presentation/ASPNET/wwwroot/app_data/docs/b05059e7065c4226b69a03a9903444cc.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/b05059e7065c4226b69a03a9903444cc.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv b/Presentation/ASPNET/wwwroot/app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/b0c530b06d89409caf545d425c9b3a3c.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv b/Presentation/ASPNET/wwwroot/app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/ba0bb232df1242b0bd02bc7114949f14.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv b/Presentation/ASPNET/wwwroot/app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/c3c9977ee57f49008ae7d4b820c9d151.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv b/Presentation/ASPNET/wwwroot/app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/cc2f7221b1f646dcac9032832923f0d2.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv b/Presentation/ASPNET/wwwroot/app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/cd92c1c878c8467195f8aa46eb59dce4.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/d1c2c2580596409a899dba12174e05e8.csv b/Presentation/ASPNET/wwwroot/app_data/docs/d1c2c2580596409a899dba12174e05e8.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/d1c2c2580596409a899dba12174e05e8.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/d798003427e24dd88e708e590ec30589.csv b/Presentation/ASPNET/wwwroot/app_data/docs/d798003427e24dd88e708e590ec30589.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/d798003427e24dd88e708e590ec30589.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv b/Presentation/ASPNET/wwwroot/app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/e2ae08ba0bc9436bb26c17fe2926c8cf.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv b/Presentation/ASPNET/wwwroot/app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/e5b63c6481b04979a5cd7cdf147f3cf5.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv b/Presentation/ASPNET/wwwroot/app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/e6a0ea5d69df4e71b0a8a2e34f579162.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv b/Presentation/ASPNET/wwwroot/app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/ef6180e120864637890b8cbdfaef9b0b.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/f23ed3dfa80c464391ed01408145f272.csv b/Presentation/ASPNET/wwwroot/app_data/docs/f23ed3dfa80c464391ed01408145f272.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/f23ed3dfa80c464391ed01408145f272.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv b/Presentation/ASPNET/wwwroot/app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/f261b29397a44dd7b0a0d49c3b088724.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/f8150866b789483ea9272586b8ae863a.csv b/Presentation/ASPNET/wwwroot/app_data/docs/f8150866b789483ea9272586b8ae863a.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/f8150866b789483ea9272586b8ae863a.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv b/Presentation/ASPNET/wwwroot/app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv new file mode 100644 index 0000000..b234fc4 --- /dev/null +++ b/Presentation/ASPNET/wwwroot/app_data/docs/fe6dad44b7e840c3803a73ace22bbc34.csv @@ -0,0 +1,4 @@ +FromDate;ToDate;ClientId;SubscriptionId +12/03/2025;12/04/2025;CL125;SUB004 +15/01/2025;15/06/2025;CL100;SUB001 +20/01/2025;20/03/2025;CL125;SUB003 diff --git a/Presentation/ASPNET/wwwroot/app_data/images/c587a28715d34524962fad9aa6670365.jpg b/Presentation/ASPNET/wwwroot/app_data/images/c587a28715d34524962fad9aa6670365.jpg new file mode 100644 index 0000000..061ef05 Binary files /dev/null and b/Presentation/ASPNET/wwwroot/app_data/images/c587a28715d34524962fad9aa6670365.jpg differ